Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,358 for bundles (0.31 sec)

  1. 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)
  2. pkg/spiffe/spiffe_test.go

    			errContains: `unexpected status: 503, fetching bundle: {"error": "system down"}`,
    		},
    		{
    			name:        "Bundle contains no certificate",
    			in:          input1,
    			extraCerts:  serverCerts,
    			statusCode:  http.StatusOK,
    			body:        invalidSpiffeX509Bundle,
    			errContains: "expected 1 certificate in x509-svid entry 0; got 0",
    		},
    		{
    			name:        "Bundle cannot be decoded",
    			in:          input1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/certificates/validation/validation_test.go

    			if diff := cmp.Diff(gotErrors, tc.wantErrors); diff != "" {
    				t.Fatalf("Unexpected error output from Validate; diff (-got +want)\n%s", diff)
    			}
    
    			// When there are no changes to the object,
    			// ValidateClusterTrustBundleUpdate should not report errors about
    			// the TrustBundle field.
    			tc.bundle.ObjectMeta.ResourceVersion = "1"
    			newBundle := tc.bundle.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. security/pkg/pki/util/keycertbundle.go

    func NewKeyCertBundleFromPem(certBytes, privKeyBytes, certChainBytes, rootCertBytes []byte) *KeyCertBundle {
    	bundle := &KeyCertBundle{}
    	bundle.setAllFromPem(certBytes, privKeyBytes, certChainBytes, rootCertBytes)
    	return bundle
    }
    
    // NewVerifiedKeyCertBundleFromPem returns a new KeyCertBundle, or error if the provided certs failed the
    // verification.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/spiffe/spiffe.go

    				n, _ := resp.Body.Read(b)
    				errMsg = fmt.Sprintf("Calling %s failed with unexpected status: %v, fetching bundle: %s",
    					endpoint, resp.StatusCode, string(b[:n]))
    			} else {
    				break
    			}
    
    			if startTime.Add(retryTimeout).Before(time.Now()) {
    				return nil, fmt.Errorf("exhausted retries to fetch the SPIFFE bundle %s from url %s. Latest error: %v",
    					trustDomain, endpoint, errMsg)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top