Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 316 for defs (0.04 sec)

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

    # resolve its dependencies in GOPATH/src.
    cd ../issue16333
    go build .
    
    go list -deps -f '{{.ImportPath}} {{.Dir}}' .
    stdout $GOPATH[/\\]src[/\\]vendor[/\\]golang.org[/\\]x[/\\]net[/\\]http2[/\\]hpack
    ! stdout $GOROOT[/\\]src[/\\]vendor
    
    go list -test -deps -f '{{.ImportPath}} {{.Dir}}' .
    stdout $GOPATH[/\\]src[/\\]vendor[/\\]golang.org[/\\]x[/\\]net[/\\]http2[/\\]hpack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tagged_import_cycle.txt

    # First, verify that the import graph depends on build tags as expected.
    go list -deps example.com/left
    stdout '^example.com/right$'
    go list -deps example.com/right
    ! stdout left
    
    env GOFLAGS=-tags=mirror
    go list -deps example.com/left
    ! stdout right
    go list -deps example.com/right
    stdout '^example.com/left$'
    env GOFLAGS=''
    
    # 'go mod why' should be agnostic to build tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 21 19:58:38 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_lazy_consistency.txt

    # which are fine: loading succeeds.
    
    go list -deps ./usex
    stdout '^example.net/x$'
    cmp go.mod go.mod.orig
    
    
    # However, if we load needx2, we should load the requirements of needx2.
    # Those requirements indicate x.2, not x.1, so the module graph is
    # inconsistent and needs to be fixed.
    
    ! go list -deps ./useneedx2
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 05 17:56:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-unlockingSingleConfiguration/groovy/build.gradle

    configurations {
        compileClasspath {
            resolutionStrategy.deactivateDependencyLocking()
        }
    }
    // end::locking-one[]
    
    // tag::locking-deps[]
    dependencies {
        implementation 'org.springframework:spring-beans:[5.0,6.0)'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 342 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/BUILD

    )
    
    cc_library(
        name = "schema_utils",
        srcs = ["schema_utils.cc"],
        hdrs = ["schema_utils.h"],
        compatible_with = get_compatible_with_portable(),
        # visibility = [":utils_friends"],
        deps = [
            ":schema_fbs",
            "//tensorflow/compiler/mlir/lite/kernels/internal:compatibility_macros",
            "@flatbuffers//:runtime_cc",
        ],
    )
    
    cc_library(
        name = "schema_conversion_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/remat/BUILD

    cc_library(
        name = "rematerializer",
        srcs = ["rematerializer.cc"],
        hdrs = ["rematerializer.h"],
        deps = [
        ],
    )
    
    tf_cc_test(
        name = "rematerializer_test",
        size = "small",
        srcs = ["rematerializer_test.cc"],
        deps = [
            ":rematerializer",
            "@com_google_googletest//:gtest_main",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 16:42:54 UTC 2023
    - 469 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_json_fields.txt

    cmp stdout want-json-name.txt
    
    # Test -json=<field> with multiple fields.
    go list -json=ImportPath,Name,GoFiles,Imports
    cmp stdout want-json-multiple.txt
    
    # Test -json=<field> with Deps outputs the Deps field.
    go list -json=Deps
    stdout '"Deps": \['
    stdout '"errors",'
    
    # Test -json=<field> with *EmbedPatterns outputs embed patterns.
    cd embed
    go list -json=EmbedPatterns,TestEmbedPatterns,XTestEmbedPatterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. samples/wasm_modules/header_injector/BUILD

        srcs = [
            "plugin.cc",
            "plugin.h",
        ],
        deps = [
            "@proxy_wasm_cpp_sdk//:proxy_wasm_intrinsics",
        ],
        defines = [
            "INJECTION_VERSION=0.0.1"
        ],
    )
    
    wasm_cc_binary(
        name = "plugin-0.0.2.wasm",
        srcs = [
            "plugin.cc",
            "plugin.h",
        ],
        deps = [
            "@proxy_wasm_cpp_sdk//:proxy_wasm_intrinsics",
        ],
        defines = [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 554 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    # spurious 'failed to cache compiled Go files' errors.
    
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  10. hack/verify-no-vendor-cycles.sh

    fi
    
    kube::util::ensure-temp-dir
    
    # Get vendored packages dependencies
    # Use -deps flag to include transitive dependencies
    go list -mod=vendor -test -tags other   -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_other.json"
    go list -mod=vendor -test -tags linux   -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_linux.json"
    go list -mod=vendor -test -tags windows -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_windows.json"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top