- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 4,203 for bind (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java
bind(MojoExecutionScope.class).toInstance(scope); bind(MavenProject.class) .toProvider(MojoExecutionScope.seededKeyProvider(MavenProject.class)) .in(scope); bind(MojoExecution.class) .toProvider(MojoExecutionScope.seededKeyProvider(MojoExecution.class)) .in(scope); bind(Log.class)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
cni/pkg/repair/netns.go
// under the procfs, /proc/<pid>/ns/net. In majority of cases, this is not used directly, but is rather bind mounted to // /var/run/netns/<name>. However, this pattern is not ubiquitous. Some platforms bind mount to other places. As we run // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where // it might be. // // Instead, we rely directly on the procfs.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 28 19:12:54 UTC 2024 - 4.3K bytes - Viewed (0) -
common/scripts/setup_env.sh
if [[ -d "${HOME}/.docker" ]]; then CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly " fi # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker) if [[ -d "${HOME}/.config/gcloud" ]]; then CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.config/gcloud,destination=/config/.config/gcloud,readonly " fi
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 04:52:54 UTC 2024 - 8.3K bytes - Viewed (0) -
internal/config/identity/ldap/ldap.go
return nil, nil, fmt.Errorf("Unable to find user DN: %w", err) } } groups, err := l.LDAP.SearchForUserGroups(conn, shortUsername, lookupRes.ActualDN) if err != nil { return nil, nil, err } return lookupRes, groups, nil } // Bind - binds to ldap, searches LDAP and returns the distinguished name of the // user and the list of groups.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 01:04:53 UTC 2024 - 12.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
this.binder = binder; } @Override protected <U> Injector bind(Key<U> key, Binding<U> binding) { super.bind(key, binding); if (key.getQualifier() != null) { com.google.inject.Key<U> k = toGuiceKey(key); this.binder.bind(k).toProvider(new BridgeProvider<>(binding)); } return this; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
return new AbstractModule() { @Override protected void configure() { bind(ILoggerFactory.class).toInstance(context.loggerFactory); bind(CoreExports.class).toInstance(exports); bind(MessageBuilderFactory.class).toInstance(context.invokerRequest.messageBuilderFactory()); } }; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.6K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/ExtensionConfigurationModule.java
configuration = new ExtensionInterpolator(it).transform(configuration); binder.bind(XmlNode.class) .annotatedWith(Names.named(extension.getKey())) .toInstance(configuration); binder.bind(PlexusConfiguration.class) .annotatedWith(Names.named(extension.getKey()))
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
internal/http/check_port_test.go
port := l.Addr().(*net.TCPAddr).Port testCases := []struct { host string port int expectedErr error }{ {"", port, fmt.Errorf("listen tcp :%v: bind: address already in use", port)}, {"127.0.0.1", port, fmt.Errorf("listen tcp 127.0.0.1:%v: bind: address already in use", port)}, } for _, testCase := range testCases { err := CheckPortAvailability(testCase.host, strconv.Itoa(testCase.port), TCPOptions{}) switch {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 03 21:12:25 UTC 2023 - 1.9K bytes - Viewed (0) -
docs/em/docs/deployment/server-workers.md
* đĨ đĨ đļââī¸ đ đ đ đĒ đ & âī¸ âŽī¸: ```Python import uvicorn.workers.UvicornWorker ``` * `--bind`: đ đŦ đ đĸ & â´ đ, âī¸ ⤠(`:`) đ đĸ & â´. * đĨ đ đââ Uvicorn đ, âŠī¸ `--bind 0.0.0.0:80` (đ đ) đ đ âī¸ `--host 0.0.0.0` & `--port 80`. đĸ, đ đĒ đ đ âĢī¸ đĻ **đš** (đ ī¸ đ) đ đ ī¸ (âĢī¸ đĸ). đ đĒ đ đ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
return delegate!!.isConnected } override fun isClosed(): Boolean { return delegate!!.isClosed } @Throws(IOException::class) override fun bind(localAddr: SocketAddress) { delegate!!.bind(localAddr) } @Throws(IOException::class) override fun connect(remoteAddr: SocketAddress) { delegate!!.connect(remoteAddr) } @Throws(IOException::class)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0)