Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 220 for Sysname (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    const SI_LOAD_SHIFT = 0x10
    
    type Utsname struct {
    	Sysname    [65]byte
    	Nodename   [65]byte
    	Release    [65]byte
    	Version    [65]byte
    	Machine    [65]byte
    	Domainname [65]byte
    }
    
    const (
    	AT_EMPTY_PATH   = 0x1000
    	AT_FDCWD        = -0x64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/plugin/plugin_dlopen.go

    	doInit(initTasks)
    
    	// Fill out the value of each plugin symbol.
    	updatedSyms := map[string]any{}
    	for symName, sym := range syms {
    		isFunc := symName[0] == '.'
    		if isFunc {
    			delete(syms, symName)
    			symName = symName[1:]
    		}
    
    		fullName := pluginpath + "." + symName
    		cname := make([]byte, len(fullName)+1)
    		copy(cname, fullName)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/internal/reflectlite/reflect_mirror_test.go

    	}
    
    	for typName := range r.m {
    		if len(r.m[typName]) != len(rl.m[typName]) {
    			t.Errorf("type %s number of fields mismatch, reflect: %d, reflectlite: %d", typName, len(r.m[typName]), len(rl.m[typName]))
    			continue
    		}
    		for field := range r.m[typName] {
    			if _, ok := rl.m[typName][field]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 21:11:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/heap.go

    	// sift down
    	i := 0
    	for {
    		c := 2*i + 1 // left child
    		if c >= n {
    			break
    		}
    		if c1 := c + 1; c1 < n && ldr.SymName((*h)[c1]) < ldr.SymName((*h)[c]) {
    			c = c1 // right child
    		}
    		if ldr.SymName((*h)[i]) <= ldr.SymName((*h)[c]) {
    			break
    		}
    		(*h)[i], (*h)[c] = (*h)[c], (*h)[i]
    		i = c
    	}
    
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. istioctl/pkg/util/handlers/handlers.go

    }
    
    func InferPodsFromTypedResource(name, defaultNS string, factory cmdutil.Factory) ([]string, string, error) {
    	resname, ns := inferNsInfo(name, defaultNS)
    	if !strings.Contains(resname, "/") {
    		return []string{resname}, ns, nil
    	}
    	client, podName, namespace, selector, err := getClientForResource(resname, ns, factory)
    	if err != nil {
    		return []string{}, "", err
    	}
    	if podName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    // PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    // being disassembled. Given a target address it returns the name and base
    // address of the symbol containing the target, if any; otherwise it returns "", 0.
    func GoSyntax(inst Inst, pc uint64, symname SymLookup) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    	var args []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/crypto/x509/root_darwin.go

    		// This should _never_ happen, but to be safe
    		return nil, errors.New("x509: macOS certificate verification internal error")
    	}
    
    	if opts.DNSName != "" {
    		// If we have a DNS name, apply our own name verification
    		if err := chain[0][0].VerifyHostname(opts.DNSName); err != nil {
    			return nil, err
    		}
    	}
    
    	keyUsages := opts.KeyUsages
    	if len(keyUsages) == 0 {
    		keyUsages = []ExtKeyUsage{ExtKeyUsageServerAuth}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory.java

            Map<String, ModuleIdentifier> byName = groupIdToModules.get(group);
            if (byName == null) {
                byName = groupIdToModules.computeIfAbsent(group, k -> new ConcurrentHashMap<>());
            }
            ModuleIdentifier moduleIdentifier = byName.get(name);
            if (moduleIdentifier == null) {
                moduleIdentifier = DefaultModuleIdentifier.newId(group, name);
                byName.put(name, moduleIdentifier);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    }
    
    type udsHTTPConnectConnector struct {
    	udsName string
    }
    
    func (u *udsHTTPConnectConnector) connect(ctx context.Context) (proxier, error) {
    	var d net.Dialer
    	conn, err := d.DialContext(ctx, "unix", u.udsName)
    	if err != nil {
    		return nil, err
    	}
    	return &httpConnectProxier{conn: conn, proxyAddress: u.udsName}, nil
    }
    
    type udsGRPCConnector struct {
    	udsName string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/upper/tests/upper.out

    Original: mY_nAmE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
Back to top