Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 138 for uris (0.18 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/configure-built-in-caches/kotlin/settings.gradle.kts

    buildCache {
        local {
            directory = File(rootDir, "build-cache")
        }
    }
    // end::configure-directory-build-cache[]
    
    // tag::configure-http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            credentials {
                username = "build-cache-user"
                password = "some-complicated-password"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 516 bytes
    - Viewed (0)
  2. 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)
  3. hack/verify-licenses.sh

    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    ARTIFACTS="${ARTIFACTS:-${PWD}/_artifacts}"
    mkdir -p "$ARTIFACTS/logs/"
    
    # Creating a new repository tree 
    # Deleting vendor directory to make go-licenses fetch license URLs from go-packages source repository
    git worktree add -f "${KUBE_TEMP}"/tmp_test_licenses/kubernetes HEAD >/dev/null 2>&1 || true
    cd "${KUBE_TEMP}"/tmp_test_licenses/kubernetes && rm -rf vendor
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploader.java

    import org.gradle.internal.resource.ExternalResourceWriteBuildOperationType;
    import org.gradle.internal.resource.ReadableContent;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URI;
    
    public class ProgressLoggingExternalResourceUploader extends AbstractProgressLoggingHandler implements ExternalResourceUploader {
        private final ExternalResourceUploader delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. releasenotes/notes/16585.yaml

    issue:
      - 16585
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 406 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// what our decoding abilities are.
    	VersionsForGroupKind(gk schema.GroupKind) []schema.GroupVersion
    }
    
    // APIGroupVersion is a helper for exposing rest.Storage objects as http.Handlers via go-restful
    // It handles URLs of the form:
    // /${storage_key}[/${object_name}]
    // Where 'storage_key' points to a rest.Storage object stored in storage.
    // This object should contain all parameterization necessary for running a particular API version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

    def expectedDir = new File(new URI('${project1.toURI()}'))
    def dir = new File('.')
    assert dir.canonicalFile == expectedDir.canonicalFile
    assert dir.directory
    def classesDir = new File("build/classes1")
    assert classesDir.mkdirs()
    assert classesDir.directory
    """
    
            project2.file('build.gradle') << """
    def expectedDir = new File(new URI('${project2.toURI()}'))
    def dir = new File('.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. build.gradle.kts

          }
          if (project.file("Module.md").exists()) {
            includes.from(project.file("Module.md"))
          }
          externalDocumentationLink {
            url.set(URI.create("https://square.github.io/okio/3.x/okio/").toURL())
            packageListUrl.set(URI.create("https://square.github.io/okio/3.x/okio/okio/package-list").toURL())
          }
        }
      }
    
      plugins.withId("com.vanniktech.maven.publish.base") {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
Back to top