Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,566 for Direct (0.12 sec)

  1. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

            def fileSnapshots = [
                outputDir: new DirectorySnapshot(outputDir.getAbsolutePath(), outputDir.name, FileMetadata.AccessType.DIRECT, TestHashCodes.hashCodeFrom(456), [
                    new RegularFileSnapshot(outputDirFile.getAbsolutePath(), outputDirFile.name, TestHashCodes.hashCodeFrom(123), DefaultFileMetadata.file(46, 123, FileMetadata.AccessType.DIRECT))
                ]),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_hash.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    [!net:golang.org] skip
    [!git] skip
    
    # fetch commit hash reachable from refs/heads/* and refs/tags/* is OK
    go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959 # on master branch
    
    # fetch other commit hash, even with a non-standard ref, is not OK
    ! go list -m golang.org/x/time@334d83c35137ac2b376c1dc3e4c7733791855a3a # refs/changes/24/41624/3
    stderr 'unknown revision'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 626 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            println files
            assert files == ['direct-dep-1.0.jar']
        }
    }
    
    task printFilesWithConfigurationInput {
        dependsOn configurations.conf
        def conf = configurations.conf
        doLast {
            def files = conf.collect { it.name }
            println files
            assert files == ['direct-dep-1.0.jar']
        }
    }
    
    task copyFiles(type:Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. go.env

    # The environment overrides everything else.
    
    # Use the Go module mirror and checksum database by default.
    # See https://proxy.golang.org for details.
    GOPROXY=https://proxy.golang.org,direct
    GOSUMDB=sum.golang.org
    
    # Automatically download newer toolchains as directed by go.mod files.
    # See https://go.dev/doc/toolchain for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 505 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_getx.txt

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get -x' should log URLs with an HTTP or HTTPS scheme.
    # A bug had caused us to log schemeless URLs instead.
    go get -x golang.org/x/text@v0.1.0
    stderr '^# get https://golang.org/x/text\?go-get=1$'
    stderr '^# get https://golang.org/x/text\?go-get=1: 200 OK \([0-9.]+s\)$'
    ! stderr '^# get //.*'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 422 bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/fixlinks_aarch64.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Re-direct all links in $1 that are relative to be canonical
    
    BASE="$1"
    find "${BASE}" -type l | \
      while read l ; do
        if [[ "$(readlink "$l")" == \.\./* ]]; then
          CANONICAL="$(readlink "$l")";
          rm "$l";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 969 bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            new DirectorySnapshot("/", "", AccessType.DIRECT, TestHashCodes.hashCodeFrom(1111), [
                new RegularFileSnapshot("/root.txt", "root.txt", TestHashCodes.hashCodeFrom(1234), DefaultFileMetadata.file(1, 1, AccessType.DIRECT)),
                new RegularFileSnapshot("/other.txt", "other.txt", TestHashCodes.hashCodeFrom(4321), DefaultFileMetadata.file(5, 28, AccessType.DIRECT))
            ])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_gopkg_unstable.txt

    cp x.go.txt x.go
    cp go.mod.empty go.mod
    go list
    
    [!net:gopkg.in] skip
    [!git] skip
    
    skip  # TODO(#54503): redirect gopkg.in requests to a local server and re-enable.
    
    env GOPROXY=direct
    env GOSUMDB=off
    go get gopkg.in/macaroon-bakery.v2-unstable/bakery
    go list -m all
    stdout 'gopkg.in/macaroon-bakery.v2-unstable v2.0.0-[0-9]+-[0-9a-f]+$'
    
    -- go.mod.empty --
    module m
    
    -- x.go.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 509 bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

    package org.gradle.internal.exceptions
    
    
    import spock.lang.Specification
    
    class ContextAwareExceptionTest extends Specification {
        private ExceptionContextVisitor visitor = Mock()
    
        def "visitor does not visit direct cause"() {
            def cause = new RuntimeException()
            def e = new ContextAwareException(cause)
    
            when:
            e.accept(visitor)
    
            then:
            1 * visitor.visitCause(cause)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingBufferBenchmark.java

    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingBufferBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy.small", "tar.snappy.large"})
        String packer;
    
        @Param({"direct", "buffered.small", "buffered.large"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
        protected String getAccessorName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top