Difference between revisions of "Import"
Jump to navigation
Jump to search
(→Go) |
|||
(19 intermediate revisions by 4 users not shown) | |||
Line 3: | Line 3: | ||
== [[Go]] == | == [[Go]] == | ||
* <code>import "[[fmt]]"</code> | * <code>import "[[fmt]]"</code> | ||
− | + | * <code>import "[[errors]]"</code> | |
* [[Cisco IOS DHCP Server configuration]]: https://www.cisco.com/en/US/docs/ios/12_1t/12_1t2/feature/guide/dt_dhcpi.html#wp1020989 | * [[Cisco IOS DHCP Server configuration]]: https://www.cisco.com/en/US/docs/ios/12_1t/12_1t2/feature/guide/dt_dhcpi.html#wp1020989 | ||
*<code>show ip dhcp import</code> | *<code>show ip dhcp import</code> | ||
− | == [[Python]] == | + | == [[import (Python)|Python]] == |
− | + | {{import python}} | |
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
See also: <code>[[from]]</code> | See also: <code>[[from]]</code> | ||
+ | * [[PEP 8]]: https://www.python.org/dev/peps/pep-0008/#imports | ||
+ | |||
+ | == [[JavaScript]] == | ||
+ | <code>[[import]] type { Request } from "express";</code> | ||
== Java == | == Java == | ||
− | *<code>import [[java.util.List]]</code> | + | * <code>import [[java.util.List]]</code> |
+ | * <code>import [[java.util.logging.Logger]]</code> | ||
+ | |||
+ | * [[JavaScript]]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import | ||
+ | * [[TypeScript]]: https://www.typescriptlang.org/docs/handbook/modules.html#import | ||
+ | |||
+ | == Related == | ||
+ | * <code>[[from]]</code> | ||
+ | * <code>[[terraform import]]</code> and import [[block]] in [[Terraform v1.15]] | ||
+ | * <code>[[terragrun import]]</code> | ||
+ | * [[geth import]] | ||
== See also == | == See also == | ||
+ | * {{import}} | ||
* {{langs}} | * {{langs}} | ||
[[Category:Programming]] | [[Category:Programming]] |
Latest revision as of 13:57, 17 September 2024
Contents
Go[edit]
import "fmt"
import "errors"
- Cisco IOS DHCP Server configuration: https://www.cisco.com/en/US/docs/ios/12_1t/12_1t2/feature/guide/dt_dhcpi.html#wp1020989
show ip dhcp import
Python[edit]
import argparse
import asyncpg
import asyncio
import click
import json
import os
import sys
import psutil
import configparser
import yaml
import tensorflow as tf
import gitlabApi
import email
import logging
import warnings
import asyncio: await
import subprocess
import requests
import urllib
import websockets
See also: from
JavaScript[edit]
import type { Request } from "express";
Java[edit]
import java.util.List
import java.util.logging.Logger
- JavaScript: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
- TypeScript: https://www.typescriptlang.org/docs/handbook/modules.html#import
Related[edit]
from
terraform import
and import block in Terraform v1.15terragrun import
- geth import
See also[edit]
Advertising: