Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 281 for uris (0.09 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

         */
        public String getDisplayUriForDir() {
            String uri = getDisplayUri();
            if (!uri.endsWith("/")) {
                uri += "/";
            }
            return uri;
        }
    
        public static class Snapshot {
            private final long modTime;
            private final HashCode hash;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            configuration.addChild("uri", "${session.rootDirectory.uri}");
            configuration.addChild("path", "${session.rootDirectory}");
            configuration.addChild("uriString", "${session.rootDirectory.uri.string}");
            configuration.addChild("uriAsciiString", "${session.rootDirectory.uri.ASCIIString}");
            configuration.addChild("pathString", "${session.rootDirectory.string}");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

        final cacheAccessCoordinator = new ArtifactCacheLockingAccessCoordinatorStub()
        final fileRepository = Mock(FileResourceRepository)
        final cachePolicy = new DefaultExternalResourceCachePolicy()
        final ProducerGuard<URI> producerGuard = Stub() {
            guardByKey(_, _) >> { args ->
                def (key, supplier) = args
                supplier.get()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                    expectHeadVersionListing()
                }
            }
    
            then:
            fails ':checkDeps'
    
            and:
            // TODO - this failure and the previous failure should report the same urls (whatever that happens to be)
            failureHasCause("""Could not find any version that matches org.utils:api:1.+.
    Versions that do not match:
      - 2.1
      - 2.0
    Versions rejected by component selection rules:
      - 1.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/transfer/AccessorBackedExternalResourceTest.groovy

            then:
            def e = thrown(MissingResourceException)
            e.location == name.uri
    
            1 * resourceAccessor.withContent(name, true, _) >> null
            0 * _
        }
    
        def expectResourceRead(ExternalResourceName name, String content) {
            1 * resourceAccessor.withContent(name, true, _) >> { uri, revalidate, action ->
                action.execute(new ByteArrayInputStream(content.bytes))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            settingsFile << """
        includeBuild '${producer.toURI()}'
    """
            buildFile << """
        apply plugin: 'java'
        repositories {
            maven { url '${mavenRepo.uri}' }
        }
    
        repositories {
            maven { url '${mavenRepo.uri}' }
        }
        dependencies {
            implementation 'org.test:producer:1.0'
        }
    """
            resolve.prepare("runtimeClasspath")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_label.properties

    labels.excludedUrls=Excluded URLs For Crawling
    labels.excludedDocPaths=Excluded Paths For Indexing
    labels.excludedDocUrls=Excluded URLs For Indexing
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths For Crawling
    labels.includedUrls=Included URLs For Crawling
    labels.includedDocPaths=Included Paths For Indexing
    labels.includedDocUrls=Included URLs For Indexing
    labels.maxAccessCount=Max Access Count
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

            mavenRepo.module("test", "a", "1.2").withNoPom().withModuleMetadata().publish()
    
            given:
            buildFile << """
    repositories {
        maven {
            url = '${mavenRepo.uri}'
            metadataSources { gradleMetadata() }
        }
    }
    configurations { compile }
    dependencies {
        compile 'test:a:1.2'
    }
    """
    
            when:
            run("checkDeps")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "experimental-initial-corrupt-check", Value: "true"},
    		{Name: "listen-client-urls", Value: fmt.Sprintf("%s,%s", etcdutil.GetClientURLByIP(etcdLocalhostAddress), etcdutil.GetClientURL(endpoint))},
    		{Name: "advertise-client-urls", Value: etcdutil.GetClientURL(endpoint)},
    		{Name: "listen-peer-urls", Value: etcdutil.GetPeerURL(endpoint)},
    		{Name: "initial-advertise-peer-urls", Value: etcdutil.GetPeerURL(endpoint)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            server.expect(server.get("b").sendFile(file))
            server.expect(server.get("c").send("this is the content"))
            server.start()
    
            when:
            server.uri("a").toURL().text == ""
            server.uri("b").toURL().text == "123"
            server.uri("c").toURL().text == "this is the content"
            server.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top