Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for nsenter (0.12 sec)

  1. releasenotes/notes/39699.yaml

    # release notes.
    releaseNotes:
    - |
      **Improved** compatibility with minimal host OSses like Talos OS (without nsenter binary). Changes Network namespaces with internal go routines.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 15 15:18:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. pkg/volume/util/subpath/subpath_windows.go

    func New(mount.Interface) Interface {
    	return &subpath{}
    }
    
    // NewNSEnter is to satisfy the compiler for having NewSubpathNSEnter exist for all
    // OS choices. however, NSEnter is only valid on Linux
    func NewNSEnter(mounter mount.Interface, ne *nsenter.Nsenter, rootDir string) Interface {
    	return nil
    }
    
    // isDriveLetterPath returns true if the given path is empty or it ends with ":" or ":\" or ":\\"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_linux.go

    		InPathCheck{executable: "ip", mandatory: true, exec: execer},
    		InPathCheck{executable: "iptables", mandatory: true, exec: execer},
    		InPathCheck{executable: "mount", mandatory: true, exec: execer},
    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    		InPathCheck{executable: "ebtables", mandatory: false, exec: execer},
    		InPathCheck{executable: "ethtool", mandatory: false, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_linux.go

    func (hu *HostUtil) PathExists(pathname string) (bool, error) {
    	return utilpath.Exists(utilpath.CheckFollowSymlink, pathname)
    }
    
    // EvalHostSymlinks returns the path name after evaluating symlinks.
    // TODO once the nsenter implementation is removed, this method can be removed
    // from the interface and filepath.EvalSymlinks used directly
    func (hu *HostUtil) EvalHostSymlinks(pathname string) (string, error) {
    	return filepath.EvalSymlinks(pathname)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. cni/README.md

        - If excluded, ignore the pod and return prevResult
    1. Setup redirect rules for the pods:
        - Get the port list from pods definition, as well as annotations.
        - Setup iptables with required port list: `nsenter --net=<k8s pod netns> /opt/cni/bin/istio-iptables ...`. Following conditions will prevent the redirect rules to be setup in the pods:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * The behavior of this repository is otherwise the same as those added by {@link #maven(org.gradle.api.Action)}.
         * <p>
         * Examples:
         * <pre class='autoTestedWithDeprecations'>
         * repositories {
         *     jcenter()
         * }
         * </pre>
         *
         * @return the added resolver
         * @see #jcenter(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.function.Consumer;
    
    /**
     * <p>
     * A context tracking tool for calls to dynamic methods.
     * Notifies the {@code onEnter} and {@code onLeave} listeners upon entering and leaving calls,
     * which is triggered by {@code enterDynamicCall} and {@code leaveDynamicCall}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.dsl.RepositoryHandler.xml

                </tr>
                <tr>
                    <td>maven</td>
                </tr>
                <tr>
                    <td>mavenCentral</td>
                </tr>
                <tr>
                    <td>jcenter</td>
                </tr>
                <tr>
                    <td>google</td>
                </tr>
                <tr>
                    <td>mavenLocal</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeDependentAnalysisSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/useSite/onProperty.kt");
        }
    
        @Test
        @TestMetadata("onSetter.kt")
        public void testOnSetter() {
          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/useSite/onSetter.kt");
        }
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 13 09:31:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top