Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,566 for Direct (0.22 sec)

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

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    [short] skip
    [!git] skip
    
    # golang.org/issue/33099: if an import path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to the module.
    # For a while, (*modfetch.codeRepo).Stat was not checking for a go.mod file,
    # which would produce a hard error at the subsequent call to GoMod.
    
    go get -v
    
    -- go.mod --
    module example.com
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 514 bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadata.java

         * metadata of `symlinkedDir/fileInDir` will be {@link AccessType#DIRECT},
         * given the file `targetDir/fileInDir` exists.
         */
        enum AccessType {
            /**
             * The path pointed to the file directly.
             */
            DIRECT,
    
            /**
             * The path pointed to a symlink pointing to the file with the metadata.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedConfiguration.java

        /**
         * Returns the {@link ResolvedDependency} instances for each direct dependency of the configuration. Via those
         * you have access to all {@link ResolvedDependency} instances, including the transitive dependencies of the
         * configuration.
         *
         * @return A {@code ResolvedDependency} instance for each direct dependency.
         * @throws ResolveException when the resolve was not successful.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies scope inheritance of direct and transitive dependencies.
     *
     * Should show three behaviors:
     *
     * 1. dependencyManagement should override the scope of transitive dependencies.
     * 2. Direct dependencies should override the scope of dependencyManagement.
     * 3. Direct dependencies should inherit scope from dependencyManagement when
     *    they do not explicitly state a scope.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_direct.txt

    # Regression test for golang.org/issue/34092: with an empty module cache,
    # 'GOPROXY=direct go get golang.org/x/tools/gopls@master' did not correctly
    # resolve the pseudo-version for its dependency on golang.org/x/tools.
    
    [!net:cloud.google.com] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    go list -m cloud.google.com/go@main
    ! stdout 'v0.0.0-'
    
    -- go.mod --
    module example.com
    
    go 1.14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 429 bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// package loader: dependencies may be promoted to direct if new
    	// direct imports are observed, and may be demoted to indirect during
    	// 'go mod tidy' or 'go mod vendor'.
    	//
    	// The direct map is keyed by module paths, not module versions. When a
    	// module's selected version changes, we assume that it remains direct if the
    	// previous version was a direct dependency. That assumption might not hold in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_simple.txt

    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    env GOCOVERDIR=data/goodexit
    exec ./example.exe goodexit
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/goodexit
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(1).
    env GOCOVERDIR=data/badexit
    ! exec ./example.exe badexit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializerTest.groovy

            when:
            def out = serialize(snapshots, serializer)
    
            then:
            assertEqualSnapshots(out, snapshots)
        }
    
        def "reads and writes directory snapshots"() {
            def snapshots =  new DirectorySnapshot("/home/lptr/dev", "dev", DIRECT, hashCodeFrom(1111), [])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_indirect_nospace.txt

    # should not be corrupted when the comment is removed.
    
    go mod tidy
    cmp go.mod go.mod.direct
    
    -- go.mod --
    module example.net/m
    
    go 1.16
    
    require example.net/x v0.1.0 //indirect
    
    replace example.net/x v0.1.0 => ./x
    -- go.mod.direct --
    module example.net/m
    
    go 1.16
    
    require example.net/x v0.1.0
    
    replace example.net/x v0.1.0 => ./x
    -- m.go --
    package m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 04 20:18:55 UTC 2021
    - 516 bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeDependentAnalysisScriptSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

      @TestMetadata("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct")
      @TestDataPath("$PROJECT_ROOT")
      public class Direct {
        @Test
        public void testAllFilesPresentInDirect() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
      }
    
      @Nested
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top