- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,108 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) -
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) -
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-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) -
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) -
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) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java
* * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.internal; import java.nio.file.Path;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
common/scripts/run.sh
# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -e WD=$(dirname "$0") WD=$(cd "$WD"; pwd) export FOR_BUILD_CONTAINER=1
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Sep 14 00:03:12 UTC 2024 - 2.2K bytes - Viewed (0)