Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,566 for Direct (0.11 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeNormalAnalysisScriptSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.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)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    [[sec:direct-vs-transitive-deps]]
    == Direct dependencies vs dependency constraints
    
    A component may have two different kinds of dependencies:
    
    - direct dependencies are _directly required by the component_.
    A direct dependency is also referred to as a _first level dependency_.
    For example, if your project source code requires Guava, Guava should be declared as _direct dependency_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/FallbackFileMetadataAccessorTest.groovy

    import org.gradle.internal.file.FileMetadata
    import org.gradle.internal.file.FileMetadataAccessor
    import org.gradle.util.UsesNativeServices
    
    import static org.gradle.internal.file.FileMetadata.AccessType.DIRECT
    
    @UsesNativeServices
    class FallbackFileMetadataAccessorTest extends AbstractFileMetadataAccessorTest {
        FileMetadataAccessor getAccessor() {
            new FallbackFileMetadataAccessor()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/proxy.go

    				// "off" always fails hard, so can stop walking list.
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "off"})
    				break
    			}
    			if url == "direct" {
    				proxyOnce.list = append(proxyOnce.list, proxySpec{url: "direct"})
    				// For now, "direct" is the end of the line. We may decide to add some
    				// sort of fallback behavior for them in the future, so ignore
    				// subsequent entries for forward-compatibility.
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/testdata/global/main.go

    	for i, s := range globallib.Data[1<<16-2:] {
    		if s != int64(i)+1<<16-2 {
    			panic("testMediumOffset: index mismatch")
    		}
    	}
    
    	x := globallib.Data[1<<16-1]
    	if x != 1<<16-1 {
    		panic("testMediumOffset: direct mismatch")
    	}
    
    	y := &globallib.Data[1<<16-3]
    	if y != &ptrData()[1<<16-3] {
    		panic("testMediumOffset: address mismatch")
    	}
    }
    
    //go:noinline
    func testLargeOffset() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_pseudo_cache.txt

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Regression test for golang.org/issue/27171: after resolving an older
    # pseudo-version of a commit, future resolution of that commit by hash should
    # choose the highest appropriate pseudo-version instead of the cached one.
    
    go mod download -json golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/ExternalResourceLister.java

    /**
     * You should use {@link ExternalResource} instead of this type.
     */
    public interface ExternalResourceLister {
    
        /**
         * Lists the direct children of the parent resource
         *
         * @param parent the resource to list from
         * @return A list of the direct children of the <code>parent</code>, null when the resource does not exist.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

     */
    
    package org.gradle.internal.snapshot
    
    import org.gradle.internal.file.FileMetadata
    import org.gradle.internal.file.FileType
    
    import static org.gradle.internal.file.FileMetadata.AccessType.DIRECT
    import static org.gradle.internal.file.FileMetadata.AccessType.VIA_SYMLINK
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_issue61423.txt

    stdout '"Hash": "08a4fa6bb9c04ffba03b26ae427b0d6335d90a2a"'
    ! stdout '"Ref":'
    ! stdout '"TagSum":'
    ! stdout '"Reuse":'
    
    
    # With GOPROXY=direct, the -reuse flag has an effect, but
    # the Origin data from the proxy should not be sufficient
    # for the proxy response to be reused.
    
    env GOPROXY=direct
    
    go list -reuse=proxy-latest.json -m -json vcs-test.golang.org/git/issue61415.git@latest
    stdout '"Version": "v0.0.0-20231114180001-f213069baa68"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/log/command.go

    	Identifier string
    	Comment    string
    }
    
    var (
    	JumpInbound             = Command{"JumpInbound", "direct all traffic through ISTIO_INBOUND chain"}
    	JumpOutbound            = Command{"JumpOutbound", "direct all traffic through ISTIO_OUTBOUND chain"}
    	ExcludeInboundPort      = Command{"ExcludeInboundPort", "exclude inbound port from capture"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top