Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 4000A1 (0.06 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    			dnsConfig: &v1.PodDNSConfig{
    				Nameservers: []string{"10.0.0.11"},
    				Searches:    []string{"my.domain"},
    				Options: []v1.PodDNSConfigOption{
    					{Name: "ndots", Value: &testNdotsOptionValue},
    					{Name: "debug"},
    				},
    			},
    			expectedDNSConfig: &runtimeapi.DNSConfig{
    				Servers:  []string{testClusterNameserver, "10.0.0.11"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/os/exec_unix_test.go

    		// EINVAL (see waitid in usr/src/uts/common/os/exit.c in
    		// illumos). This is configurable via sysconf(_SC_MAXPID), but
    		// we'll just take the default.
    		pid = 30000-1
    	}
    
    	p, err := FindProcess(pid)
    	if err != nil {
    		t.Fatalf("FindProcess(math.MaxInt32) got err %v, want nil", err)
    	}
    
    	if ps, err := p.Wait(); !errors.Is(err, syscall.ECHILD) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1.upperAscii() == 'ROOK TAKES 👑'",
    				"self.val1.lowerAscii() == 'rook takes 👑'",
    
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'",
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'",
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'",
    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    type SidIdentifierAuthority struct {
    	Value [6]byte
    }
    
    var (
    	SECURITY_NULL_SID_AUTHORITY        = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 0}}
    	SECURITY_WORLD_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 1}}
    	SECURITY_LOCAL_SID_AUTHORITY       = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 2}}
    	SECURITY_CREATOR_SID_AUTHORITY     = SidIdentifierAuthority{[6]byte{0, 0, 0, 0, 0, 3}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    			}
    		})
    	}
    }
    
    func TestAddrFromSlice(t *testing.T) {
    	tests := []struct {
    		ip       []byte
    		wantAddr Addr
    		wantOK   bool
    	}{
    		{
    			ip:       []byte{10, 0, 0, 1},
    			wantAddr: mustIP("10.0.0.1"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0xfe, 0x80, 15: 0x01},
    			wantAddr: mustIP("fe80::01"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top