Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for uris (0.04 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    return false;
                }
            }
            return true;
        }
    
        public static URI toSecureUrl(URI scriptUri) {
            try {
                return new URI("https", null, scriptUri.getHost(), scriptUri.getPort(), scriptUri.getPath(), scriptUri.getQuery(), scriptUri.getFragment());
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

            return new TestClassLoader(parent, classpath)
        }
    
        /**
         * Returns an URLClassloader containing URLs with un-encoded whitespaces.
         */
        ClassLoader faultyClassLoader(ClassLoader parent = ClassLoader.systemClassLoader.parent, List<File> classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCrossVersionSpec.groovy

        String localMaven
    
        def setup() {
            def mavenRepo = new MavenFileRepository(file("maven-repo"))
            mavenRepo.module("org.example", "example-lib", "1.0").publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
        // TODO (donat) add more coverage after all classpath entry types are exposed via the TAPI
    
        def "respects manipulation done in the eclipse.classpath.whenMerged closure"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1/types.go

    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full,
    	// final step in the path.  "*" means all.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

            buildFile << """
                plugins {
                    id 'java-library'
                }
    
                repositories {
                    maven {
                        url '${mavenRepo.uri}'
                    }
                }
                dependencies {
                    implementation 'org.example:lib:1.0'
                    implementation 'org.example:does not exist:1.0'
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	ConfigSource *PilotConfigSource `protobuf:"bytes,31,opt,name=configSource,proto3" json:"configSource,omitempty"`
    	// Specifies an extra root certificate in PEM format. This certificate will be trusted
    	// by pilot when resolving JWKS URIs.
    	JwksResolverExtraRootCA string `protobuf:"bytes,32,opt,name=jwksResolverExtraRootCA,proto3" json:"jwksResolverExtraRootCA,omitempty"`
    	// Hub to pull the container image from. Image will be `Hub/Image:Tag-Variant`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
     * 'smb://' URLs it is necessary to first call the static
     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

        String scriptUrl
        TestFile scriptFile
        String scriptName = "remote-script.gradle"
        def configurationCache
    
        def setup() {
            server.start()
    
            scriptUrl = "${server.uri}/${scriptName}"
            scriptFile = file("remote-script.gradle") << """
                println 'loaded remote script'
            """
            server.expectGet "/$scriptName", scriptFile
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * How to handle insecure (http) URLs used for Maven Repositories.
         *
         * This property can be set via command-line option '--insecure-protocol'.  The default value is 'warn'.
         *
         * @since 7.3
         */
        @Input
        @Option(option = "insecure-protocol", description = "How to handle insecure URLs used for Maven Repositories.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        repositories {
            maven { url "${fakeRepo.uri}" }
        }
    
        dependencies {
            ${implementationConfiguration} project(':api')
            ${testImplementationConfiguration} 'foo.bar:coolLib:1.0'
        }
    
        idea.module.downloadJavadoc = true
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top