Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 452 for Usages (0.11 sec)

  1. pkg/apis/certificates/v1/zz_generated.conversion.go

    	out.Request = *(*[]byte)(unsafe.Pointer(&in.Request))
    	out.SignerName = in.SignerName
    	out.ExpirationSeconds = (*int32)(unsafe.Pointer(in.ExpirationSeconds))
    	out.Usages = *(*[]certificates.KeyUsage)(unsafe.Pointer(&in.Usages))
    	out.Username = in.Username
    	out.UID = in.UID
    	out.Groups = *(*[]string)(unsafe.Pointer(&in.Groups))
    	out.Extra = *(*map[string]certificates.ExtraValue)(unsafe.Pointer(&in.Extra))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/apis/certificates/v1beta1/zz_generated.conversion.go

    	if err := metav1.Convert_Pointer_string_To_string(&in.SignerName, &out.SignerName, s); err != nil {
    		return err
    	}
    	out.ExpirationSeconds = (*int32)(unsafe.Pointer(in.ExpirationSeconds))
    	out.Usages = *(*[]certificates.KeyUsage)(unsafe.Pointer(&in.Usages))
    	out.Username = in.Username
    	out.UID = in.UID
    	out.Groups = *(*[]string)(unsafe.Pointer(&in.Groups))
    	out.Extra = *(*map[string]certificates.ExtraValue)(unsafe.Pointer(&in.Extra))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top