Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 279 for Usages (0.14 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            SoftwareComponentInternal javaLibrary = project.components.getByName("java")
    
            then:
            javaLibrary instanceof AdhocComponentWithVariants
            def runtime = javaLibrary.usages.find { it.name == 'runtimeElements' }
            runtime.artifacts.collect {it.file} == [jarTask.archiveFile.get().asFile]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/crypto/x509/parser.go

    	var usageBits asn1.BitString
    	if !der.ReadASN1BitString(&usageBits) {
    		return 0, errors.New("x509: invalid key usage")
    	}
    
    	var usage int
    	for i := 0; i < 9; i++ {
    		if usageBits.At(i) != 0 {
    			usage |= 1 << uint(i)
    		}
    	}
    	return KeyUsage(usage), nil
    }
    
    func parseBasicConstraintsExtension(der cryptobyte.String) (bool, int, error) {
    	var isCA bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

            cnf.attributes(attrs -> {
                attrs.attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.class, Category.REGULAR_PLATFORM));
                attrs.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, Usage.VERSION_CATALOG));
            });
            return cnf;
        }
    
        @Override
        public void from(Object dependencyNotation) {
            if (importedCatalog == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      // TPUExecute ops, the number of return values of parallel_execute op exceeds
      // that of cluster_func op. As such, each return value of parallel_execute op
      // must be mapped with corresponding return value usages of cluster_func.
      result = tensorflow::RemapOutputsFromLogicalDevices(
          cluster_func.getLoc(), output_shardings, cluster_to_core_index,
          num_results_pre_cluster, old_parallel_execute, cluster_idx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	return pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName:   spec.ClientName,
    			Organization: spec.ClientCertAuth.Organizations,
    			Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		},
    		NotAfter:            spec.ClientCertNotAfter,
    		EncryptionAlgorithm: spec.EncryptionAlgorithm,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      auto reshape = dot.getRhs().getDefiningOp<mhlo::ReshapeOp>();
      if (!reshape) return failure();
      if (!reshape->hasOneUse())
        return rewriter.notifyMatchFailure(reshape, "reshape has multiple usages");
      if (!reshape.getType().hasStaticShape() ||
          !reshape.getOperand().getType().hasStaticShape() ||
          !dot.getLhs().getType().hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                contextualLabel == 'Problem: In version catalog testLibs, you can only call the \'from\' method a single time.'
                details == 'The method was called more than once'
                solutions == [ 'Remove further usages of the method call' ]
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20060")
        def "no name conflicting of accessors"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	ImageRepository string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. hack/lib/util.sh

        echo '{"signing":{"default":{"expiry":"43800h","usages":["signing","key encipherment",${purpose}]}}}' > "${dest_dir}/${id}-ca-config.json"
    EOF
    }
    
    # signs a client certificate: args are sudo, dest-dir, CA, filename (roughly), username, groups...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top