Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 428 for Usages (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                class TestComponent implements SoftwareComponentInternal, ComponentWithVariants {
                    String name
                    Set usages = []
                    Set variants = []
                }
    
                class TestUsage implements UsageContext {
                    String name
                    Usage usage
                    Set dependencies = []
                    Set dependencyConstraints = []
                    Set artifacts = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	// validate usages
    	if err := bootstraputil.ValidateUsages(usages); err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, usages, err.Error()))
    	}
    
    	return allErrs
    }
    
    // ValidateEtcd validates the .Etcd sub-struct.
    func ValidateEtcd(e *kubeadm.Etcd, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    			config: CertConfig{
    				Config: certutil.Config{
    					CommonName: "test",
    					Usages:     []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    				},
    			},
    			expected: true,
    		},
    		{
    			name: "has ServerAuth ECDSA",
    			config: CertConfig{
    				Config: certutil.Config{
    					CommonName: "test",
    					Usages:     []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                class TestComponent implements SoftwareComponentInternal, ComponentWithVariants {
                    String name
                    Set usages = []
                    Set variants = []
                }
    
                class TestUsage implements UsageContext {
                    String name
                    Usage usage
                    Set dependencies = []
                    Set dependencyConstraints = []
                    Set artifacts = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            Multimap<SourceSet, SourceSet> usages = LinkedHashMultimap.create();
            for (SourceSet sourceSet : sourceSets) {
                for (SourceSet otherSourceSet : sourceSets) {
                    if (containsOutputOf(sourceSet, otherSourceSet)) {
                        usages.put(otherSourceSet, sourceSet);
                    }
                }
            }
            return usages;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

    // CHECK-SAME: dense<0>
    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"
    // CHECK-SAME: dense<1>
    // Check that there are no extra "tf.Const"s existing in this function.
    // CHECK-NOT: "tf.Const"
    
    // Check that the usages of %[[CST]] and %[[CST_0]] are untouched.
    // CHECK: %[[ADD:.*]] = "tf.AddV2"(%[[CST]], %[[CST_0]])
    // CHECK: "tf.Max"({{.*}}, %[[ADD]])
    
    // -----
    
    // CHECK-LABEL: @recursively_duplicate_constants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

        }
    
        private String buildProperNames(List<ProperMethodUsage> usages) {
            usages.collect { ProperMethodUsage.buildProperName(it) }.join(", ")
        }
    
        private String buildAllowedUsages(String role) {
            switch (role) {
                case 'dependencyScope':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	usages := make([]ExtKeyUsage, len(keyUsages))
    	copy(usages, keyUsages)
    
    	if len(chain) == 0 {
    		return false
    	}
    
    	usagesRemaining := len(usages)
    
    	// We walk down the list and cross out any usages that aren't supported
    	// by each certificate. If we cross out all the usages, then the chain
    	// is unacceptable.
    
    NextCert:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. cluster/common.sh

                "server": {
                    "expiry": "43800h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "server auth",
                        "client auth"
                    ]
                },
                "client": {
                    "expiry": "43800h",
                    "usages": [
                        "signing",
                        "key encipherment",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. security/pkg/k8s/chiron/utils_test.go

    			}
    			client.PrependReactor("get", "certificatesigningrequests", defaultReactionFunc(csr))
    
    			usages := []cert.KeyUsage{
    				cert.UsageDigitalSignature,
    				cert.UsageKeyEncipherment,
    				cert.UsageServerAuth,
    				cert.UsageClientAuth,
    			}
    			r, err := submitCSR(client, []byte("test-pem"), "test-signer",
    				usages, DefaulCertTTL)
    			if tc.expectFail {
    				assert.Error(t, err)
    			} else if err != nil || r == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top