Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 266 for tid1 (0.04 sec)

  1. .github/workflows/tests.yml

      tidb:
        strategy:
          matrix:
            dbversion: [ 'v6.5.0' ]
            go: ['1.22', '1.21', '1.20']
            platform: [ ubuntu-latest ]
        runs-on: ${{ matrix.platform }}
    
        steps:
          - name: Setup TiDB
            uses: Icemap/tidb-action@main
            with:
              port: 9940
              version: ${{matrix.dbversion}}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_bad_domain.txt

    ! go get  ./usenonexistent
    stderr '^go: x/usenonexistent imports\n\tnonexistent.rsc.io: cannot find module providing package nonexistent.rsc.io$'
    
    
    # go mod vendor and go mod tidy should ignore appengine imports.
    rm usenonexistent/x.go
    go mod tidy
    go mod vendor
    
    -- go.mod --
    module x
    
    -- useappengine/x.go --
    package useappengine
    import _ "appengine" // package does not exist
    -- usenonexistent/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    # Regression test for https://go.dev/issue/60313: 'go mod tidy' did not preserve
    # dependencies needed to prevent 'ambiguous import' errors in external test
    # dependencies.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module example
    
    go 1.21
    
    require (
    	example.net/a v0.1.0
    	example.net/b v0.1.0
    )
    
    require example.net/outer/inner v0.1.0 // indirect
    
    replace (
    	example.net/a v0.1.0 => ./a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/NamespaceIdTest.groovy

            given:
            NamespaceId id1 = new NamespaceId("some-namespace", "some-name")
            NamespaceId id2 = new NamespaceId("some-namespace", "some-name")
    
            expect:
            id1 Matchers.strictlyEqual(id2)
        }
    
        def "hashCode and equals determine inequality" () {
            given:
            NamespaceId id1 = new NamespaceId(namespace1, name1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/os/exec_unix.go

    	}
    
    	var (
    		status syscall.WaitStatus
    		rusage syscall.Rusage
    		pid1   int
    		e      error
    	)
    	for {
    		pid1, e = syscall.Wait4(p.Pid, &status, 0, &rusage)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != nil {
    		return nil, NewSyscallError("wait", e)
    	}
    	p.pidDeactivate(statusDone)
    	return &ProcessState{
    		pid:    pid1,
    		status: status,
    		rusage: &rusage,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. buildscripts/verify-healing.sh

    	done
    
    	"${MINIO[@]}" --address ":$((start_port + 1))" $args >"${WORK_DIR}/dist-minio-server1.log" 2>&1 &
    	pid1=$!
    	disown ${pid1}
    
    	"${MINIO[@]}" --address ":$((start_port + 2))" $args >"${WORK_DIR}/dist-minio-server2.log" 2>&1 &
    	pid2=$!
    	disown $pid2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

          %id0 = "tf.Identity"(%arg1) : (!tf_res)
            -> !tf_res
          // CHECK-NEXT: "tf.Identity"
          // CHECK-SAME: {device = "/TPU:1"}
          %id1 = "tf.Identity"(%arg2) : (!tf_res)
            -> !tf_res
          tf_executor.yield %arg0, %id0, %id1
            : tensor<i32>, !tf_res,
              !tf_res
        }
        tf_executor.fetch %island#0, %island#1, %island#2
          : tensor<i32>, !tf_res,
            !tf_res
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/main4.c

    	return NULL;
    }
    
    int main(int argc, char **argv) {
    	pthread_t tid;
    	int i;
    
    	// Tell the Go library to start looking for SIGIO.
    	GoCatchSIGIO();
    
    	i = pthread_create(&tid, NULL, thread1, NULL);
    	if (i != 0) {
    		fprintf(stderr, "pthread_create: %s\n", strerror(i));
    		exit(EXIT_FAILURE);
    	}
    
    	i = pthread_join(tid, NULL);
    	if (i != 0) {
    		fprintf(stderr, "pthread_join: %s\n", strerror(i));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_lazy_indirect.txt

    # add one that is missing ('go mod tidy' or 'go mod vendor').
    
    go get rsc.io/quote
    grep 'rsc.io/quote v\d+\.\d+\.\d+ // indirect$' go.mod
    ! grep 'rsc.io/quote v\d+\.\d+\.\d+$' go.mod
    
    go list -deps .
    ! stderr .
    [!short] go build .
    [!short] ! stderr .
    
    
    # 'go get .' (or 'go mod tidy') removes the indirect mark.
    
    go get .
    grep 'rsc.io/quote v\d+\.\d+\.\d+$' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 19:52:18 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_duplicates.txt

    env GO111MODULE=on
    
    # Regression test for golang.org/issue/28456:
    # 'go mod tidy' should not leave duplicate lines when re-writing the file.
    
    go mod tidy
    cmp go.sum golden.sum
    
    -- go.mod --
    module use
    
    go 1.16
    
    require rsc.io/quote v1.5.2
    
    -- go.sum --
    rsc.io/quote v1.5.2 h1:3fEykkD9k7lYzXqCYrwGAf7iNhbk4yCjHmKBN9td4L0=
    rsc.io/quote v1.5.2 h1:3fEykkD9k7lYzXqCYrwGAf7iNhbk4yCjHmKBN9td4L0=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 17 21:38:40 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top