Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for Name2 (0.15 sec)

  1. src/syscall/syscall_windows.go

    //sys	DnsRecordListFree(rl *DNSRecord, freetype uint32) = dnsapi.DnsRecordListFree
    //sys	DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) = dnsapi.DnsNameCompare_W
    //sys	GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) = ws2_32.GetAddrInfoW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    					VolumeSource: v1.VolumeSource{
    						GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    							PDName: "fake-device1",
    						},
    					},
    				},
    				{
    					Name: "volume-name2",
    					VolumeSource: v1.VolumeSource{
    						GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    							PDName: "fake-device2",
    						},
    					},
    				},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    			// embedded type
    			typ := p.qualifiedName(name)
    			tag := p.oliteral()
    			p.addField(styp, pos, nil, typ, tag)
    			break
    		}
    
    		// name1, name2, ... Type [ tag ]
    		names := p.nameList(name)
    		var typ Expr
    
    		// Careful dance: We don't know if we have an embedded instantiated
    		// type T[P1, P2, ...] or a field T of array/slice type [P]E or []E.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	store = Handle(r0)
    	if store == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) {
    	r0, _, _ := syscall.Syscall(procDnsNameCompare_W.Addr(), 2, uintptr(unsafe.Pointer(name1)), uintptr(unsafe.Pointer(name2)), 0)
    	same = r0 != 0
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	DnsRecordListFree(rl *DNSRecord, freetype uint32) = dnsapi.DnsRecordListFree
    //sys	DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) = dnsapi.DnsNameCompare_W
    //sys	GetAddrInfoW(nodename *uint16, servicename *uint16, hints *AddrinfoW, result **AddrinfoW) (sockerr error) = ws2_32.GetAddrInfoW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    			// embedded type
    			typ = name
    			if p.tok == token.PERIOD {
    				typ = p.parseQualifiedIdent(name)
    			}
    		} else {
    			// name1, name2, ... T
    			names = []*ast.Ident{name}
    			for p.tok == token.COMMA {
    				p.next()
    				names = append(names, p.parseIdent())
    			}
    			// Careful dance: We don't know if we have an embedded instantiated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. pkg/kubelet/token/token_manager_test.go

    					},
    				},
    				{
    					name:      "ame-sa",
    					namespace: "ame-ns",
    					tr: &authenticationv1.TokenRequest{
    						Spec: authenticationv1.TokenRequestSpec{
    							Audiences:         []string{"ame1", "ame2"},
    							ExpirationSeconds: getInt64Point(2000),
    							BoundObjectRef: &authenticationv1.BoundObjectReference{
    								Kind: "pod",
    								Name: "ame-pod",
    								UID:  "ame-uid",
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top