Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 275 for uris (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            }
    
            void verifySignatures() {
                builder.verifySignatures = true
            }
    
            void keyServer(String uri) {
                builder.addKeyServer(new URI(uri))
            }
    
            void keyServer(URI uri) {
                builder.addKeyServer(uri)
            }
    
            void keyRingFormat(String keyRingFormat) {
                builder.setKeyringFormat(keyRingFormat);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

            given:
            def repoDeclaration = """
                repositories {
                    maven {
                        url("${mavenRepo.uri}")
                    }
                }
            """
            def pluginBuild = pluginBuild("build-logic")
            publishSettingsPlugin(pluginBuild.settingsPluginId, repoDeclaration)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top