Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for _root (0.06 sec)

  1. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            /**
             * @param root The root dependency
             * @return this request for chaining, never {@code null}
             */
            @Nonnull
            public DependencyResolverRequestBuilder root(@Nonnull DependencyCoordinate root) {
                this.root = root;
                return this;
            }
    
            /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    //
    // Support for signing other root CA has been removed - too dangerous, no clear use case.
    //
    // Default config, for backward compat with Citadel:
    // - if "cacerts" secret exists in istio-system, will be mounted. It may contain an optional "root-cert.pem",
    // with additional roots and optional {ca-key, ca-cert, cert-chain}.pem user-provided root CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

            InternalSession session = InternalSession.from(s);
            DependencyNode root = cast(AbstractNode.class, node, "node").getDependencyNode();
            List<DependencyNode> dependencies = session.getRepositorySystem()
                    .flattenDependencyNodes(session.getSession(), root, getScopeDependencyFilter(scope));
            dependencies.remove(root);
            return map(dependencies, session::getNode);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	// GkeWorkloadRootCertFilePath is the well-known path for the GKE workload root certificate file
    	GkeWorkloadRootCertFilePath = WorkloadIdentityCredentialsPath + "/ca_certificates.pem"
    
    	// SystemRootCerts is special case input for root cert configuration to use system root certificates.
    	SystemRootCerts = "SYSTEM"
    
    	// RootCertReqResourceName is resource name of discovery request for root certificate.
    	RootCertReqResourceName = "ROOTCA"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/certcontroller.go

    	return nil
    }
    
    // watchRootCertAndgenKeyCert will watch for the root certs, and regenerate Istiod DNS TLS certificates if the root
    // has changed. This is not used if TLS certificates are loaded from ./var/run/secrets/istiod/tls.
    // TODO(hzxuzonghu): support async notification instead of polling the CA root cert.
    func (s *Server) watchRootCertAndGenKeyCert(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

            assert ((ShallowChildModel) model).getShallowMessage() == "shallow poly from 'root'"
    
            assert model instanceof DeepChildModel
            assert ((DeepChildModel) model).getDeepMessage() == "deep poly from 'root'"
    
            assert model instanceof VeryDeepChildModel
            assert ((VeryDeepChildModel) model).getVeryDeepMessage() == "very deep poly from 'root'"
    
            assert !(model instanceof SideModel)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. prow/release-commit.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -eux
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    
    setup_gcloud_credentials
    
    # Old prow image does not set this, so needed explicitly here as this is not called through make
    export GO111MODULE=on
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * @param root the root node of the dependency graph
         * @param count estimated number of dependencies
         */
        DefaultDependencyResolverResult(PathModularizationCache cache, List<Exception> exceptions, Node root, int count) {
            this.cache = cache;
            this.exceptions = exceptions;
            this.root = root;
            nodes = new ArrayList<>(count);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. Makefile

    	@(env bash $(PWD)/buildscripts/verify-healing-empty-erasure-set.sh)
    	@(env bash $(PWD)/buildscripts/heal-inconsistent-versions.sh)
    
    verify-healing-with-root-disks: install-race ## verify healing root disks
    	@echo "Verify healing with root drives"
    	@(env bash $(PWD)/buildscripts/verify-healing-with-root-disks.sh)
    
    verify-healing-with-rewrite: install-race ## verify healing to rewrite old xl.meta -> new xl.meta
    	@echo "Verify healing with rewrite"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top