Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,566 for Direct (0.22 sec)

  1. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    go get rsc.io/fortune@v1.0.0
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # direct access fails (because localhost.localdev does not exist)
    # web.get is providing the error message - there's no actual network access.
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=direct
    ! go get rsc.io/fortune@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    [go-builder] stdout '^https://proxy.golang.org,direct$'
    [go-builder] go env GOSUMDB
    [go-builder] stdout '^sum.golang.org$'
    [go-builder] env GOPROXY=https://proxy.golang.org
    [go-builder] go env GOSUMDB
    [go-builder] stdout '^sum.golang.org$'
    
    # Download direct from github.
    
    [!net:proxy.golang.org] skip
    [!net:sum.golang.org] skip
    [!git] skip
    env GOSUMDB=sum.golang.org
    env GOPROXY=direct
    
    go get rsc.io/quote@v1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/README.md

    ## Purpose
    
    This library is a shared dependency for servers and clients to work with Kubernetes API infrastructure without direct
    type dependencies. Its first consumers are `k8s.io/kubernetes`, `k8s.io/client-go`, and `k8s.io/apiserver`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository. It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FallbackFileMetadataAccessor.java

            if (!f.exists()) {
                return DefaultFileMetadata.missing(AccessType.DIRECT);
            }
            if (f.isDirectory()) {
                return DefaultFileMetadata.directory(AccessType.DIRECT);
            }
            if (f.isFile()) {
                return DefaultFileMetadata.file(f.lastModified(), f.length(), AccessType.DIRECT);
            }
            throw new UncheckedIOException("Unsupported file type for " + f.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/internal/abi/funcpc.go

    // FuncPCABI0 returns the entry PC of the function f, which must be a
    // direct reference of a function defined as ABI0. Otherwise it is a
    // compile-time error.
    //
    // Implemented as a compile intrinsic.
    func FuncPCABI0(f interface{}) uintptr
    
    // FuncPCABIInternal returns the entry PC of the function f. If f is a
    // direct reference of a function, it must be defined as ABIInternal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 27 21:15:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_major.txt

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # golang.org/issue/34383: if a module path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            /**
             * Sets the direct dependencies. If both a root dependency and direct dependencies are given in the request, the
             * direct dependencies from the request will be merged with the direct dependencies from the root dependency's
             * artifact descriptor, giving higher priority to the dependencies from the request.
             *
             * @param dependencies the direct dependencies, may be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/customTask/kotlin/build.gradle.kts

    plugins {
        id("org.myorg.binary-repository-version")
    }
    
    binaryRepo {
        coordinates = "commons-lang:commons-lang"
        serverUrl = "http://repo2.myorg.org/maven2"
    }
    // end::plugin-extension[]
    
    // tag::direct-task-register[]
    tasks.register<LatestArtifactVersion>("latestVersionMavenCentral") {
        coordinates = "commons-lang:commons-lang"
        serverUrl = "http://repo1.maven.org/maven2"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 655 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/customTask/groovy/build.gradle

    plugins {
        id 'org.myorg.binary-repository-version'
    }
    
    binaryRepo {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo2.myorg.org/maven2'
    }
    // end::plugin-extension[]
    
    // tag::direct-task-register[]
    tasks.register('latestVersionMavenCentral', LatestArtifactVersion) {
        coordinates = 'commons-lang:commons-lang'
        serverUrl = 'http://repo1.maven.org/maven2'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # Verify PPC64 does not reuse a trampoline which is too far away.
    # This tests an edge case where the direct call relocation addend should
    # be ignored when computing the distance from the direct call to the
    # already placed trampoline
    [short] skip
    [!GOARCH:ppc64] [!GOARCH:ppc64le] skip
    [GOOS:aix] skip
    
    # Note, this program does not run. Presumably, 'DWORD $0' is simpler to
    # assembly 2^26 or so times.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top