Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,566 for Direct (0.12 sec)

  1. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.1.txt

    patch.example.com/indirect v1.0.1
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.1"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/get_404_meta.txt

    # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS.
    
    [!net:bazil.org] skip
    [!git] skip
    
    env GONOSUMDB=bazil.org,github.com,golang.org
    env GO111MODULE=on
    env GOPROXY=direct
    go get bazil.org/fuse/fs/fstestutil
    
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 278 bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         * indirectly depends on the given project.
         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
         * @return The downstream projects in the build order, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationOverridesProvider.kt

            withValidityAssertion { analysisSession.symbolDeclarationOverridesProvider.isSubClassOf(this, superClass) }
    
        /**
         * Checks if [this] class has [superClass] listed as its direct superclass.
         *
         * N.B. The class is not considered to be a direct subclass of itself, so `myClass.isDirectSubClassOf(myClass)` is always `false`.
         */
        public fun KaClassOrObjectSymbol.isDirectSubClassOf(superClass: KaClassOrObjectSymbol): Boolean =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnChangingVersionsResolveIntegrationTest.groovy

        }
    
        def setup() {
            buildFile << """
                configurations.all {
                    resolutionStrategy.$notation()
                }
            """
        }
    
        def "fails to resolve a direct changing dependency"() {
            buildFile << """
                dependencies {
                    conf('org:test:1.0') {
                        changing = true
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/OverlappingOutputsFilterTest.groovy

        }
    
        private static FileSystemLocationSnapshot directorySnapshot(RegularFileSnapshot... contents) {
            def builder = MerkleDirectorySnapshotBuilder.sortingRequired()
            builder.enterDirectory(FileMetadata.AccessType.DIRECT, "/absolute", "absolute", INCLUDE_EMPTY_DIRS)
            contents.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

        }
    
        void "does not resolve module excluded for configuration"() {
            given:
            def repo = mavenRepo
            repo.module('org.gradle.test', 'direct', '1.0').publish()
            repo.module('org.gradle.test', 'transitive', '1.0').publish()
            def module = repo.module('org.gradle.test', 'external', '1.0')
            module.dependsOn('org.gradle.test', 'transitive', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19764.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19764: test that the linker's trampoline insertion
    // pass is happy with direct calls to interface wrappers that
    // may be defined in multiple packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 02 03:25:02 UTC 2017
    - 348 bytes
    - Viewed (0)
  9. src/runtime/float_test.go

    		if got == dontwant {
    			// The test cases above should be uint64s such that
    			// this equality doesn't hold. These examples trigger
    			// the case where using an intermediate float64 doesn't work.
    			t.Errorf("direct float32 conversion doesn't work: arg=%x got=%x dontwant=%x", i, got, dontwant)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:34:24 UTC 2021
    - 699 bytes
    - Viewed (0)
  10. src/cmd/go/proxy_test.go

    				path = path[j+1:]
    			}
    		}
    	}
    
    	// Request for $GOPROXY/sumdb-direct is direct sumdb access.
    	// (Client thinks it is talking directly to a sumdb.)
    	if strings.HasPrefix(path, "sumdb-direct/") {
    		r.URL.Path = path[len("sumdb-direct"):]
    		sumdbServer.ServeHTTP(w, r)
    		return
    	}
    
    	// Request for $GOPROXY/sumdb-wrong is direct sumdb access
    	// but all the hashes are wrong.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top