Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 266 for tid1 (0.04 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-out.yaml

                          safeRegex:
                            regex: spiffe://.*/ns/foo/sa/rule[0]-from[1]-principal[0]
                    - authenticated:
                        principalName:
                          exact: spiffe://td1/ns/foo/sa/rule[0]-from[1]-principal[1]
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: spiffe://.*bar/ns/foo/sa/rule[0]-from[1]-principal[1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_gonoproxy.txt

    env GONOPROXY=none # that is, proxy all despite GOPRIVATE
    go get rsc.io/quote
    
    # Download .info files needed for 'go list -m all' later.
    # TODO(#42723): either 'go list -m' should not read these files,
    # or 'go get' and 'go mod tidy' should download them.
    go list -m all
    stdout '^golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c$'
    
    # When GOPROXY is not empty but contains no entries, an error should be reported.
    env GOPROXY=','
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/os/wait6_freebsd_arm.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, pad, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), 0, uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 549 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_modinfo.txt

    # the modinfo embedded in a binary by the go tool
    # when module is enabled.
    env GO111MODULE=on
    
    cd x
    go mod edit -require=rsc.io/quote@v1.5.2
    go mod edit -replace=rsc.io/quote@v1.5.2=rsc.io/quote@v1.0.0
    go mod tidy # populate go.sum
    
    # Build a binary and ensure that it can output its own debug info.
    # The debug info should be accessible before main starts (golang.org/issue/29628).
    go build
    exec ./x$GOEXE
    stderr 'mod\s+x\s+\(devel\)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_invalid_path.txt

    stderr '^go: example.com/dotname/.dot@latest: malformed module path "example.com/dotname/.dot": leading dot in path element$'
    go get example.com/dotname/.dot
    go get example.com/dotname/use
    go mod tidy
    
    -- mod/go.mod --
    
    -- mod/foo.go --
    package foo
    
    -- m'd/foo.go --
    package mad
    
    -- badname/go.mod --
    
    module .\.
    
    -- badname/foo.go --
    package badname
    
    -- dotname/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-principal-with-wildcard-out.yaml

                          safeRegex:
                            regex: spiffe://.*/ns/foo/sa/rule[0]-from[1]-principal[0]
                    - authenticated:
                        principalName:
                          exact: spiffe://td1/ns/foo/sa/rule[0]-from[1]-principal[1]
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: spiffe://.*bar/ns/foo/sa/rule[0]-from[1]-principal[1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting.cc

    namespace tensorflow::saved_model::fingerprinting {
    
    namespace {
    
    using ::tensorflow::protobuf::Map;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::CodedOutputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::StringOutputStream;
    
    // TODO(b/290063184): remove when USM is GA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_downadd_indirect.txt

    #
    # b.1 ---- c.1
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    # If that downgrade selects b version 1, we will add a new dependency on module c.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    go get example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.1.0 '
    stdout '^example.com/d v0.1.0 '
    
    -- go.mod --
    module example.com/a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                ",flags=0x"     + Hexdump.toHexString( flags & 0xFF, 4 ) +
                ",flags2=0x"    + Hexdump.toHexString( flags2, 4 ) +
                ",signSeq="     + signSeq +
                ",tid="         + tid +
                ",pid="         + pid +
                ",uid="         + uid +
                ",mid="         + mid +
                ",wordCount="   + wordCount +
                ",byteCount="   + byteCount );
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    			}
    		})
    	}
    }
    
    func TestSetContainerReadiness(t *testing.T) {
    	cID1 := kubecontainer.ContainerID{Type: "test", ID: "1"}
    	cID2 := kubecontainer.ContainerID{Type: "test", ID: "2"}
    	containerStatuses := []v1.ContainerStatus{
    		{
    			Name:        "c1",
    			ContainerID: cID1.String(),
    			Ready:       false,
    		}, {
    			Name:        "c2",
    			ContainerID: cID2.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top