Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for URIs (0.13 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/connector/ResourceConnectorSpecification.java

            return null;
        }
    
        default Collection<Authentication> getAuthentications() {
            return Collections.emptyList();
        }
    
        default HttpRedirectVerifier getRedirectVerifier() {
            return uris -> {
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/compression/URIBuilderTest.groovy

     * limitations under the License.
     */
    
    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. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/compression/ArchiversTest.groovy

    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.resources.internal.LocalResourceAdapter
    import spock.lang.Specification
    
    class ArchiversTest extends Specification {
    
        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)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 06:15:56 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. ci/official/envs/nightly_upload

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # IMPORTANT: trailing slash is required on GCS URIs, as it tells gcloud to
    # pretend the path is a directory.
    # 1. Upload nightlies
    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.7K bytes
    - Viewed (0)
  10. 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.
    	if host != "" && host != "localhost" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top