Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/go/testdata/script/mod_tidy_downgrade_ambiguous.txt

    stdout '^rsc.io/quote@v1.5.2$'
    ! stdout 'rsc.io/quote/v3'
    go list -e all
    ! stdout '^rsc.io/quote$'
    
    # 'go mod tidy' should preserve the requirement on rsc.io/quote but mark it
    # indirect. This prevents a downgrade to v1.5.1, which could introduce
    # an ambiguity.
    go mod tidy
    go list -m -f '{{.Path}}@{{.Version}}{{if .Indirect}} indirect{{end}}' all
    stdout '^rsc.io/quote@v1.5.2 indirect$'
    stdout '^rsc.io/quote/v3@v3.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 17:32:52 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/util/store/filestore_test.go

    	testCases := []struct {
    		key       string
    		data      string
    		expectErr bool
    	}{
    		{
    			"id1",
    			"data1",
    			false,
    		},
    		{
    			"id2",
    			"data2",
    			false,
    		},
    		{
    			"/id1",
    			"data1",
    			true,
    		},
    		{
    			".id1",
    			"data1",
    			true,
    		},
    		{
    			"   ",
    			"data2",
    			true,
    		},
    		{
    			"___",
    			"data2",
    			true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top