Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 922 for uris (0.04 sec)

  1. pkg/apis/certificates/helpers.go

    	if len(req.DNSNames) == 0 && len(req.IPAddresses) == 0 {
    		return dnsOrIPSANRequiredErr
    	}
    
    	if len(req.EmailAddresses) > 0 {
    		return emailSANNotAllowedErr
    	}
    	if len(req.URIs) > 0 {
    		return uriSANNotAllowedErr
    	}
    
    	if !kubeletServingRequiredUsages.Equal(usages) && !kubeletServingRequiredUsagesNoRSA.Equal(usages) {
    		return fmt.Errorf("usages did not match %v", kubeletServingRequiredUsages.List())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

            buildFile """
    def f = file("file:testdir")
    assert f == project.layout.projectDirectory.dir("testdir").asFile
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pkg/test/csrctrl/authority/authority.go

    		SerialNumber:       serialNumber,
    		Subject:            cr.Subject,
    		DNSNames:           cr.DNSNames,
    		IPAddresses:        cr.IPAddresses,
    		EmailAddresses:     cr.EmailAddresses,
    		URIs:               cr.URIs,
    		PublicKeyAlgorithm: cr.PublicKeyAlgorithm,
    		PublicKey:          cr.PublicKey,
    		Extensions:         cr.Extensions,
    		ExtraExtensions:    cr.ExtraExtensions,
    		NotBefore:          nbf,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 28 18:22:37 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/compression/URIBuilderTest.groovy

    package org.gradle.api.internal.file.archive.compression
    
    import spock.lang.Specification
    
    class URIBuilderTest extends Specification {
    
        def "builds URIs"() {
            expect:
            new URIBuilder(new URI("protocol:some/uri")).schemePrefix("hey").build().toString() == 'hey:protocol:some/uri'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 27 15:36:08 UTC 2018
    - 923 bytes
    - Viewed (0)
  5. ci/official/envs/versions_upload

    # ==============================================================================
    # Release jobs are very basic. They don't use any caching or RBE,
    # but they do upload logs to resultstore.
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=1
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH="${KOKORO_KEYSTORE_DIR}/73361_tensorflow_release_binary_uploader_service_account"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/compression/ArchiversTest.groovy

        def "archivers have unique URIs"() {
            when:
            def file = new File("/some/file")
    
            def resource = new LocalResourceAdapter(TestFiles.fileRepository().localResource(file))
            def bzip2 = new Bzip2Archiver(resource)
            def gzip = new GzipArchiver(resource)
    
            then:
            resource.URI != bzip2.URI
            bzip2.URI != gzip.URI
            gzip.URI != resource.URI
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 06:15:56 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/url_windows.go

    	if len(path) == 0 || path[0] != '/' {
    		return "", errNotAbsolute
    	}
    
    	path = filepath.FromSlash(path)
    
    	// We interpret Windows file URLs per the description in
    	// https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/.
    
    	// The host part of a file URL (if any) is the UNC volume name,
    	// but RFC 8089 reserves the authority "localhost" for the local machine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

            return getThis();
        }
    
        /**
         * Specifies classpath URIs used for loading user-defined classes. This list is in addition to the default classpath.
         *
         * @param classpath Classpath URIs
         * @return this
         * @since 2.8
         */
        public T withInjectedClassPath(ClassPath classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderFactory.java

         */
        ClassLoader getIsolatedSystemClassLoader();
    
        /**
         * Creates a ClassLoader implementation which has only the classes from the specified URIs and the Java API visible.
         */
        ClassLoader createIsolatedClassLoader(String name, ClassPath classPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/url.go

    	if !filepath.IsAbs(path) {
    		return nil, errNotAbsolute
    	}
    
    	// If path has a Windows volume name, convert the volume to a host and prefix
    	// per https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/.
    	if vol := filepath.VolumeName(path); vol != "" {
    		if strings.HasPrefix(vol, `\\`) {
    			path = filepath.ToSlash(path[2:])
    			i := strings.IndexByte(path, '/')
    
    			if i < 0 {
    				// A degenerate case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top