Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 442 for b0Bundle (0.78 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            spec()
        }
    
        void hasBundle(String id, List<String> expectedElements) {
            assert model.hasBundle(id)
            def bundle = model.getBundle(id)?.components
            assert bundle != null: "Expected a bundle with name $id but it wasn't found"
            assert bundle == expectedElements
        }
    
        void hasVersion(String id, String version) {
            assert model.hasVersion(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/webhooks/webhookpatch.go

    type WebhookCertPatcher struct {
    	// revision to patch webhooks for
    	revision    string
    	webhookName string
    
    	queue controllers.Queue
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	webhooks kclient.Client[*v1.MutatingWebhookConfiguration]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/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)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.sample.conf

    executable: gradle
    args: "bundle clean"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    	//
    	// +optional
    	SignerName string `json:"signerName,omitempty" protobuf:"bytes,1,opt,name=signerName"`
    
    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tests/fuzz/pki_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	_, err = rootCertFile.Write(rootCertFileBytes)
    	if err != nil {
    		return 0
    	}
    	bundle, err := util.NewVerifiedKeyCertBundleFromFile("certfile", "privKeyFile", []string{"certChainFile"}, "rootCertFile")
    	if err != nil {
    		return 0
    	}
    	_, err = bundle.CertOptions()
    	if err == nil {
    		panic("Ran successfully")
    	}
    
    	newCertFile, err := os.Create("newCertfile")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogIntegrationTest.groovy

            buildFile << """
                plugins {
                    id("version-catalog")
                }
    
                catalog {
                    versionCatalog {
                        bundle('my', ['foo', 'bar'])
                    }
                }
                dependencies {
                    versionCatalog 'org:foo:1.0'
                    versionCatalog('org:bar') {
                        version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top