Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 362 for Usages (0.14 sec)

  1. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

        }
    
        @Test
        void testReadModifiedPoms(@TempDir Path tempDir) throws Exception {
            // TODO a similar test should be created to test the dependency management (basically all usages
            // of DefaultModelBuilder.getCache() are affected by MNG-6530
    
            FileUtils.copyDirectoryStructure(new File("src/test/resources/projects/grandchild-check"), tempDir.toFile());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      }
    
      return new_func_name;
    }
    
    // Renames the existing @main function to avoid conflict with the newly
    // created main function. When it is renamed, its usages will also be replaced.
    // It will be renamed by attaching a number suffix like `@main_{i}`, until there
    // are no conflicts. This function is a no-op when no function called @main
    // exists.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            where:
            deprecationTracePropertyName = LoggingDeprecatedFeatureHandler.ORG_GRADLE_DEPRECATION_TRACE_PROPERTY_NAME
        }
    
        def 'deprecated usages are exposed as build operation progress events'() {
            given:
            useStackTrace()
            useStackTrace()
            useStackTrace()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                // This is not safe, as the execution of this block may not occur, or may not occur in the order expected
              configurations["myConfig"].attributes {
                  attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage::class.java, Usage.JAVA_RUNTIME))
              }
        }
    ```
    
    === Deprecations
    
    [[compile_options_generated_sources_directory]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    		},
    
    		"server cert": {
    			Opts:  getDefaultVerifyOptions(t),
    			Certs: getCerts(t, serverCert),
    			User:  CommonNameUserConversion,
    
    			ExpectErr: true,
    		},
    		"server cert allowing non-client cert usages": {
    			Opts:  x509.VerifyOptions{Roots: getRootCertPool(t)},
    			Certs: getCerts(t, serverCert),
    			User:  CommonNameUserConversion,
    
    			ExpectUserName: "127.0.0.1",
    			ExpectGroups:   []string{"My Org"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	return certutil.Config{
    		CommonName:   cert.Subject.CommonName,
    		Organization: cert.Subject.Organization,
    		AltNames: certutil.AltNames{
    			IPs:      cert.IPAddresses,
    			DNSNames: cert.DNSNames,
    		},
    		Usages: cert.ExtKeyUsage,
    	}
    }
    
    func loadCertConfigMutators(certBaseName string) []certConfigMutatorFunc {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. cluster/gce/util.sh

        # family.
        kube_master_image="${KUBE_GCE_MASTER_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_master_image}" ]]; then
          kube_master_image=$(gcloud compute images list --project="${MASTER_IMAGE_PROJECT}" --no-standard-images --filter="family:${MASTER_IMAGE_FAMILY}" --format 'value(name)')
        fi
    
        echo "Using image: ${kube_master_image} from project: ${MASTER_IMAGE_PROJECT} as master image" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top