Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Sysname (0.14 sec)

  1. pilot/pkg/networking/core/listener.go

    ) []*filterChainOpts {
    	var rdsName string
    	if opts.port.Port == 0 {
    		rdsName = opts.bind.Primary() // use the UDS as a rds name
    	} else {
    		if listenerProtocol == istionetworking.ListenerProtocolAuto && opts.bind.Primary() != actualWildcard && opts.service != nil {
    			// For sniffed services, we have a unique listener and route just for that service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			hasNames, err := HasNames(tt.args)
    			if !reflect.DeepEqual(tt.expectedError, err) {
    				t.Errorf("expected HasName to error:\n%s\tgot:\n%s", tt.expectedError, err)
    			}
    			if hasNames != tt.expectedHasName {
    				t.Errorf("expected HasName to return %v for %s", tt.expectedHasName, tt.args)
    			}
    		})
    	}
    }
    
    func TestUnstructured(t *testing.T) {
    	// create test dirs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// x's type V is identical to T?
    	if T == V {
    		return true
    	}
    
    	// Otherwise at least one of T and V must not be defined
    	// and they must have the same kind.
    	if T.HasName() && V.HasName() || T.Kind() != V.Kind() {
    		return false
    	}
    
    	if T.Kind() == abi.Chan && specialChannelAssignability(T, V) {
    		return true
    	}
    
    	// x's type T and V must have identical underlying types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	RtlDosPathNameToNtPathName(dosName *uint16, ntName *NTUnicodeString, ntFileNamePart *uint16, relativeName *RTL_RELATIVE_NAME) (ntstatus error) = ntdll.RtlDosPathNameToNtPathName_U_WithStatus
    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/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sysnb	Tgkill(tgid int, tid int, sig syscall.Signal) (err error)
    //sysnb	Times(tms *Tms) (ticks uintptr, err error)
    //sysnb	Umask(mask int) (oldmask int)
    //sysnb	Uname(buf *Utsname) (err error)
    //sys	Unmount(target string, flags int) (err error) = SYS_UMOUNT2
    //sys	Unshare(flags int) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	exitThread(code int) (err error) = SYS_EXIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    		wasmPluginsChanged, proxyConfigsChanged bool
    
    	changedEnvoyFilters := sets.New[ConfigKey]()
    
    	for conf := range pushReq.ConfigsUpdated {
    		switch conf.Kind {
    		case kind.ServiceEntry, kind.DNSName:
    			servicesChanged = true
    		case kind.DestinationRule:
    			destinationRulesChanged = true
    		case kind.VirtualService:
    			virtualServicesChanged = true
    		case kind.Gateway:
    			gatewayChanged = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	ret = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Uname(buf *Utsname) (err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_____OSNAME_A<<4, uintptr(unsafe.Pointer(buf)))
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
Back to top