Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 650 for bundles (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	if len(caBundle) == 0 {
    		return nil, fmt.Errorf("missing content for CA bundle %q", name)
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	verifyOptions := defaultVerifyOptions()
    	verifyOptions.Roots, err = cert.NewPoolFromBytes(caBundle)
    	if err != nil {
    		return nil, fmt.Errorf("error loading CA bundle for %q: %v", name, err)
    	}
    
    	return &caBundleAndVerifier{
    		caBundle:      caBundle,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. guava/pom.xml

          </plugin>
          <plugin>
            <extensions>true</extensions>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>5.1.8</version>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca.go

    type dynamicCertificateContent struct {
    	// clientCA holds the content for the clientCA bundle
    	clientCA    caBundleContent
    	servingCert certKeyContent
    	sniCerts    []sniCertKeyContent
    }
    
    // caBundleContent holds the content for the clientCA bundle.  Wrapping the bytes makes the Equals work nicely with the
    // method receiver.
    type caBundleContent struct {
    	caBundle []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/chain.go

    		if !handler.Handles(a.GetOperation()) {
    			continue
    		}
    		if validator, ok := handler.(ValidationInterface); ok {
    			err := validator.Validate(ctx, a, o)
    			if err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // Handles will return true if any of the handlers handles the given operation
    func (admissionHandler chainAdmissionHandler) Handles(operation Operation) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. samples/bookinfo/src/details/Gemfile.lock

    GEM
      remote: https://rubygems.org/
      specs:
        webrick (1.8.1)
    
    PLATFORMS
      aarch64-linux
      ruby
      x86_64-linux
    
    DEPENDENCIES
      webrick (~> 1.7)
    
    BUNDLED WITH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 18:42:05 UTC 2024
    - 171 bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // using a `spec.signerName=NAME` field selector.
      //
      // +optional
      optional string signerName = 1;
    
      // trustBundle contains the individual X.509 trust anchors for this
      // bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
      //
      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/MutationValidator.java

             * Theoretically these should be bundled under {@link MutationType#DEPENDENCIES}, but these mutations are not (yet)
             * prevented on resolved configurations.
             */
            DEPENDENCY_ATTRIBUTES("dependency attributes"),
    
            /**
             * The mutation of the attributes (other than coordinates) of a dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

        /**
         * Provides or requires a component which dependencies are bundled as part
         * of the main artifact
         */
        JvmEcosystemAttributesDetails withEmbeddedDependencies();
    
        /**
         * Provides or requires a component which dependencies are bundled as part
         * of the main artifact in a relocated/shadowed form
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle-task"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/groovy/settings.gradle

    rootProject.name = 'cacheable-bundle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
Back to top