Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,821 for Bundle (0.23 sec)

  1. pkg/webhooks/webhookpatch.go

    )
    
    // WebhookCertPatcher listens for webhooks on specified revision and patches their CA bundles
    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
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DependencyBundleValueSource.java

            Property<DefaultVersionCatalog> getConfig();
        }
    
        @Override
        public List<DependencyModel> obtain() {
            String bundle = getParameters().getBundleName().get();
            DefaultVersionCatalog config = getParameters().getConfig().get();
            BundleModel bundleModel = config.getBundle(bundle);
            return bundleModel.getComponents().stream()
                .map(config::getDependencyData)
                .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

        @Optional
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFile
        protected File getBundleBinary() {
            RegularFile bundle = getBundleBinaryFile().get();
            File bundleFile = bundle.getAsFile();
            if (!bundleFile.exists()) {
                return null;
            }
            return bundleFile;
        }
    
        /**
         * Returns the install directory property.
         */
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. android/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)
  6. security/pkg/pki/util/keycertbundle_test.go

    			}
    		} else if tc.expectedErr != "" {
    			t.Errorf("%s: Expected error %s but succeeded", id, tc.expectedErr)
    		} else if bundle == nil {
    			t.Errorf("%s: the bundle should not be empty", id)
    		} else {
    			cert, key, chain, root := bundle.GetAllPem()
    			if len(cert) != 0 {
    				t.Errorf("%s: certBytes should be empty", id)
    			}
    			if len(key) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            }
        }
    
        def "can use nested versions, libraries and bundles"() {
            tomlFile << """
    [versions]
    commons-lib = "1.0"
    
    [libraries]
    my-lib = {group = "org.gradle.test", name="lib", version.ref="commons-lib"}
    my-lib2 = {group = "org.gradle.test", name="lib2", version.ref="commons-lib"}
    
    [bundles]
    my-bundle = ["my-lib"]
    other-bundle = ["my-lib", "my-lib2"]
    
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top