Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 266 for tid1 (0.04 sec)

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

    # This test verifies that GOMODCACHE does not affect whether checksums are embedded
    # with vendored files.
    # See issue #46400
    [short] skip 'builds and links a binary twice'
    go mod tidy
    go mod vendor
    
    go build -mod=vendor
    go version -m example$GOEXE
    cp stdout version-m.txt
    
    env GOMODCACHE=$WORK${/}modcache
    go build -mod=vendor
    go version -m example$GOEXE
    cmp stdout version-m.txt
    
    -- go.mod --
    module example
    go 1.22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 17:19:18 UTC 2024
    - 568 bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/threadpprof.go

    	if (pthread_self() == tid) {
    		arg->buf[0] = (uintptr_t)(cpuHogThread) + 0x10;
    		arg->buf[1] = (uintptr_t)(cpuHogThread2) + 0x4;
    		arg->buf[2] = 0;
    	} else
    		arg->buf[0] = 0;
    }
    
    static void* cpuHogDriver(void* arg __attribute__ ((unused))) {
    	while (1) {
    		cpuHogThread();
    	}
    	return 0;
    }
    
    void runCPUHogThread(void) {
    	pthread_create(&tid, 0, cpuHogDriver, 0);
    }
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 22:59:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/modfile_flag.txt

    ! grep '^rsc.io/quote v1.5.2 ' go.alt.sum
    
    # other 'go mod' commands should work. 'go mod vendor' is tested later.
    go mod download rsc.io/quote
    go mod graph
    stdout rsc.io/quote
    go mod tidy
    grep rsc.io/quote go.alt.sum
    go mod verify
    go mod why rsc.io/quote
    
    
    # 'go list' and other commands with build flags should work.
    # They should update the alternate go.mod when a dependency is missing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            containerSupportsBuildOperations()
    
            when:
            setupContainerDefaults()
            UserCodeApplicationId id1 = null
            UserCodeApplicationId id2 = null
            List<UserCodeApplicationId> ids = []
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.register("a") {
                    ids << userCodeApplicationContext.current()
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/old_tidy_toolchain.txt

    # Commands in an old module with no go line and no toolchain line,
    # or with only a go line, should succeed.
    # (They should not fail due to the go.mod not being tidy.)
    
    # No go line, no toolchain line.
    go list
    
    # Old go line, no toolchain line.
    go mod edit -go=1.16
    go list
    
    go mod edit -go=1.20
    go list
    
    # New go line, no toolchain line, using same toolchain.
    env TESTGO_VERSION=1.21
    go mod edit -go=1.21
    go list
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 615 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/optimize_functional_ops.mlir

      %1 = "tfl.greater_equal"(%arg0, %0) : (tensor<3x15x14x3xf32>, tensor<3x15x14x3xf32>) -> tensor<3x15x14x3xi1>
      %2 = "tf.All"(%1, %cst) {Tidx = i32, device = "/device:CPU:0", keep_dims = false} : (tensor<3x15x14x3xi1>, tensor<4xi32>) -> tensor<i1>
      %3 = "tf.If"(%2, %2, %arg0, %0) {Tcond = i1,
        else_branch = @_functionalize_if_else_branch_00, is_stateless = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_issue37438.txt

    #
    # If a path exists at the requested version, but does not exist at the
    # version of the module that is already required and does not exist at
    # the version that would be selected by 'go mod tidy', then
    # 'go get foo@requested' should resolve the requested version,
    # not error out on the (unrelated) latest one.
    
    go get example.net/a/p@v0.2.0
    
    -- go.mod --
    module example
    
    go 1.15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 798 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_goline.txt

    env TESTGO_VERSION=go1.99
    
    ! go list -f '{{.Module.GoVersion}}'
    stderr 'go: updates to go.mod needed'
    stderr 'go mod tidy'
    
    go mod tidy
    cat go.mod
    go list -f '{{.Module.GoVersion}}'
    stdout 1.22
    
    # Adding a@v1.0.01 should upgrade to Go 1.23rc1.
    cp go.mod go.mod1
    go get example.com/a@v1.0.1
    stderr '^go: upgraded go 1.22 => 1.23rc1\ngo: upgraded example.com/a v1.0.0 => v1.0.1\ngo: upgraded example.com/b v1.0.0 => v1.0.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/INSTALL.md

    `k8s.io/client-go` and its dependencies will be downloaded (if needed),
    and detailed dependency version info will be added to your `go.mod` file
    (or you can also run `go mod tidy` to do this directly).
    
    ## Using a specific version
    
    If you want to use a particular version of the `k8s.io/client-go` library,
    you can indicate which version of `client-go` your project requires:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // module that would resolve any remaining missing package.
    //
    // If the main module is “tidy” (that is, if "go mod tidy" is a no-op for it)
    // and all requested packages are in "all", then loading completes in a single
    // iteration.
    // TODO(bcmills): We should also be able to load in a single iteration if the
    // requested packages all come from modules that are themselves tidy, regardless
    // of whether those packages are in "all". Today, that requires two iterations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top