Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for uris (0.05 sec)

  1. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactoryTest.groovy

            def cl = registry.getClassLoaderFor(new VisitableURLClassLoader.Spec("test", [url1, url2]), [null])
    
            then:
            cl instanceof VisitableURLClassLoader
            cl.name == "test-client-payload-loader"
            cl.URLs == [url1, url2] as URL[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                Source rel = source.resolve(relPath);
                return rel != null ? new SourceWrapper(rel) : null;
            }
    
            @Override
            public URI getLocationURI() {
                Path path = source.getPath();
                return path != null ? path.toUri() : URI.create(source.getLocation());
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            executer.requireOwnGradleUserHomeDir()
        }
    
        @Canonical
        class RepoFixture {
            MavenHttpRepository repository
            Closure<Void> cleanup
    
            URI getUri() {
                repository.uri
            }
        }
    
        def "does not invalidate configuration cache entry when dynamic version information has not expired"() {
            given:
            RepoFixture defaultRepo = new RepoFixture(remoteRepo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            );
        }
    
        @Override
        public List<URL> transform(Collection<URL> urls, StandardTransform transform) {
            if (urls.isEmpty()) {
                return ImmutableList.of();
            }
            ClasspathFileTransformer transformer = fileTransformerFor(transform);
            return parallelTransformExecutor.transformAll(
                urls,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/IoTestCase.java

          } catch (Exception ignore) {
            // probably URISyntaxException or IllegalArgumentException
            // fall back to copying URLs to files in the testDir == null block below
          }
        }
    
        if (testDir == null) {
          // testdata resources aren't file:// urls, so create a directory to store them in and then
          // copy the resources to the filesystem as needed
          testDir = createTempDir();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      New-Item -Force -ItemType 'directory' $tmp_dir | Out-Null
    
      $urls = ${kube_env}['NODE_BINARY_TAR_URL'].Split(",")
      $filename = Split-Path -leaf $urls[0]
      $hash = $null
      if ($kube_env.ContainsKey('NODE_BINARY_TAR_HASH')) {
        $hash = ${kube_env}['NODE_BINARY_TAR_HASH']
      }
      MustDownload-File -Hash $hash -OutFile $tmp_dir\$filename -URLs $urls
    
      tar xzvf $tmp_dir\$filename -C $tmp_dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            fun displayNameOf(fileOrDirectory: File): String
            fun instantiateValueSourceOf(obtainedValue: ObtainedValue): ValueSource<Any, ValueSourceParameters>
            fun isRemoteScriptUpToDate(uri: URI): Boolean
        }
    
        suspend fun ReadContext.checkBuildScopedFingerprint(): CheckedFingerprint {
            // TODO: log some debug info
            while (true) {
                when (val input = read()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/build.gradle.kts

        }
        runtimeOnly(libs.mavenResolverTransportFile) {
            because("For ApiMavenResolver. To resolve file:// URLs")
        }
        runtimeOnly(libs.mavenResolverTransportHttp) {
            because("For ApiMavenResolver. To resolve http:// URLs")
        }
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. test/codegen/mathbits.go

    	// 386:"BSFL\t"
    	// arm:"ORR\t\\$65536","CLZ",-"MOVHU\tR"
    	// arm64:"ORR\t\\$65536","RBITW","CLZW",-"MOVHU\tR",-"RBIT\t",-"CLZ\t"
    	// s390x:"FLOGR","OR\t\\$65536"
    	// ppc64x/power8:"POPCNTD","ORIS\\t\\$1"
    	// ppc64x/power9:"CNTTZD","ORIS\\t\\$1"
    	// wasm:"I64Ctz"
    	return bits.TrailingZeros16(n)
    }
    
    func TrailingZeros8(n uint8) int {
    	// amd64:"BSFL","ORL\\t\\$256"
    	// 386:"BSFL"
    	// arm:"ORR\t\\$256","CLZ",-"MOVBU\tR"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperBadArchiveTest.groovy

            when:
            def success = wrapperExecuter.run()
    
            then:
            assertSucces(success)
        }
    
        private prepareWrapperWithGradleBin() {
            prepareWrapper(new URI("$server.uri$GRADLE_BIN_ZIP"))
        }
    
        def "wrapper gets bad archive on 2 attempts"() {
            given:
            server.expect(server.head(GRADLE_BIN_ZIP))
            server.expect(server.get(GRADLE_BIN_ZIP).sendFile(badArchive))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top