Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 266 for tid1 (0.04 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/security/authz/builder/testdata/http/simple-policy-td-aliases-out.yaml

                        principalName:
                          exact: spiffe://td1/ns/rule[0]/sa/from[1]-principal[0]
                    - authenticated:
                        principalName:
                          exact: spiffe://cluster.local/ns/rule[0]/sa/from[1]-principal[0]
                    - authenticated:
                        principalName:
                          exact: spiffe://td1/ns/rule[0]/sa/from[1]-principal[1]
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            with(capturedDescriptor1) {
                extraInfo.asMap() == [(new QName(id1.namespace, id1.name)): "info1 value", (new QName(id2.namespace, id2.name)): "info2 value"]
            }
            capturedDescriptor2 instanceof IvyModuleDescriptor
            with(capturedDescriptor2) {
                extraInfo.asMap() == [(new QName(id1.namespace, id1.name)): "info1 value", (new QName(id2.namespace, id2.name)): "info2 value"]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/import_ignore.txt

    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module m.test
    
    go 1.16
    -- .ignore.go --
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:39:31 UTC 2020
    - 156 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/lca.go

    	// Combine the right two precomputed values to get the answer.
    	logS := uint(log64(int64(p2 - p1)))
    	bid1 := lca.rangeMin[logS][p1]
    	bid2 := lca.rangeMin[logS][p2-1<<logS+1]
    	if lca.blocks[bid1].depth < lca.blocks[bid2].depth {
    		return lca.blocks[bid1].b
    	}
    	return lca.blocks[bid2].b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tagged_import_cycle.txt

    stdout '^example.com/chiral$\n^example.com/left$'
    go mod why example.com/right
    stdout '^example.com/chiral$\n^example.com/right$'
    env GOFLAGS=''
    
    # 'go mod tidy' should successfully handle the cycle.
    env GOFLAGS=-mod=readonly
    go mod tidy
    
    # 'go mod vendor' should copy in both packages without crashing.
    go mod vendor
    exists vendor/example.com/left/default.go
    exists vendor/example.com/left/mirror.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 21 19:58:38 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/numgoroutine.go

    extern void CallbackNumGoroutine();
    
    static void* thread2(void* arg __attribute__ ((unused))) {
    	CallbackNumGoroutine();
    	return NULL;
    }
    
    static void CheckNumGoroutine() {
    	pthread_t tid;
    	pthread_create(&tid, NULL, thread2, NULL);
    	pthread_join(tid, NULL);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"runtime"
    	"strings"
    )
    
    var baseGoroutines int
    
    func init() {
    	register("NumGoroutine", NumGoroutine)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. buildscripts/verify-healing-empty-erasure-set.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: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_race_tag.txt

    # Tests Issue #54468
    
    [short] skip 'links a test binary'
    [!race] skip
    
    go mod tidy
    go test -c -o=$devnull -race .
    
    ! stderr 'cannot find package'
    
    -- go.mod --
    module testrace
    
    go 1.18
    
    require rsc.io/sampler v1.0.0
    -- race_test.go --
    //go:build race
    
    package testrace
    
    import (
            "testing"
    
            _ "rsc.io/sampler"
    )
    
    func TestRaceTag(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:43:59 UTC 2022
    - 363 bytes
    - Viewed (0)
Back to top