Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 220 for Sysname (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    			scope.err(err, w, req)
    			return
    		}
    
    		// Watches for single objects are routed to this function.
    		// Treat a name parameter the same as a field selector entry.
    		hasName := true
    		_, name, err := scope.Namer.Name(req)
    		if err != nil {
    			hasName = false
    		}
    
    		ctx = request.WithNamespace(ctx, namespace)
    
    		outputMediaType, _, err := negotiation.NegotiateOutputMediaType(req, scope.Serializer, scope)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/tag.go

    	if err != nil {
    		return err
    	}
    	// Check the newly generated webhook does not conflict with existing ones.
    	resName := webhookName
    	if resName == "" {
    		resName = fmt.Sprintf("%s-%s", "istio-revision-tag", tagName)
    	}
    	if err := analyzeWebhook(resName, istioNS, tagWhYAML, revision, kubeClient.RESTConfig()); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pkg/kubelet/util/util.go

    	opts.ResourceVersion = "0"
    }
    
    var IsUnixDomainSocket = filesystem.IsUnixDomainSocket
    
    // GetNodenameForKernel gets hostname value to set in the hostname field (the nodename field of struct utsname) of the pod.
    func GetNodenameForKernel(hostname string, hostDomainName string, setHostnameAsFQDN *bool) (string, error) {
    	kernelHostname := hostname
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 18:07:39 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/link/testdata/pe-llvm/main.go

    //    {i686,x86_64,armv7,arm64}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where this windres calls into llvm-rc and llvm-cvtres. The source file,
    // a.rc, simply contains a reference to its own bytes:
    //
    //    resname RCDATA a.rc
    //
    // Object dumping the resultant rsrc.syso, we can see the split sections and
    // the @feat.00 SEH symbol:
    //
    //     rsrc.syso:      file format coff-x86-64
    //
    //     architecture: x86_64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/seh.go

    	for _, s := range ctxt.Textp {
    		if fi := ldr.FuncInfo(s); !fi.Valid() {
    			continue
    		}
    		uw := ldr.SEHUnwindSym(s)
    		if uw == 0 {
    			continue
    		}
    		name := ctxt.SymName(uw)
    		off, cached := uwcache[name]
    		if !cached {
    			off = xdata.Size()
    			uwcache[name] = off
    			xdata.AddBytes(ldr.Data(uw))
    			// The SEH unwind data can contain relocations,
    			// make sure those are copied over.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/mips/asm.go

    		if t&3 != 0 {
    			ldr.Errorf(s, "direct call is not aligned: %s %x", ldr.SymName(rs), t)
    		}
    
    		// check if target address is in the same 256 MB region as the next instruction
    		if (ldr.SymValue(s)+int64(r.Off())+4)&0xf0000000 != (t & 0xf0000000) {
    			ldr.Errorf(s, "direct call too far: %s %x", ldr.SymName(rs), t)
    		}
    
    		return applyrel(target.Arch, ldr, rt, r.Off(), s, val, t), noExtReloc, isOk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    // getDwsectCUSize retrieves the corresponding package size inside the current section.
    func getDwsectCUSize(sname string, pkgname string) uint64 {
    	return dwsectCUSize[sname+"."+pkgname]
    }
    
    func addDwsectCUSize(sname string, pkgname string, size uint64) {
    	dwsectCUSizeMu.Lock()
    	defer dwsectCUSizeMu.Unlock()
    	dwsectCUSize[sname+"."+pkgname] += size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet.go

    				seenIPs[address.Address] = true
    			}
    		case v1.NodeExternalDNS, v1.NodeInternalDNS:
    			seenDNSNames[address.Address] = true
    		}
    	}
    
    	for dnsName := range seenDNSNames {
    		dnsNames = append(dnsNames, dnsName)
    	}
    	for ip := range seenIPs {
    		ips = append(ips, netutils.ParseIPSloppy(ip))
    	}
    
    	// return in stable order
    	sort.Strings(dnsNames)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

    public abstract class AstUtils {
    
        private AstUtils() {
        }
    
        public static boolean isMethodOnThis(MethodCallExpression call, String name) {
            boolean hasName = call.getMethod() instanceof ConstantExpression && call.getMethod().getText().equals(name);
            return hasName && targetIsThis(call);
        }
    
        public static boolean targetIsThis(MethodCallExpression call) {
            Expression target = call.getObjectExpression();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/symtab.go

    			return
    		}
    		elfshnum = xosect.Elfsect.(*ElfShdr).shnum
    	}
    
    	sname := ldr.SymExtname(x)
    	sname = mangleABIName(ctxt, ldr, x, sname)
    
    	// One pass for each binding: elf.STB_LOCAL, elf.STB_GLOBAL,
    	// maybe one day elf.STB_WEAK.
    	bind := elf.STB_GLOBAL
    	if ldr.IsFileLocal(x) && !isStaticTmp(sname) || ldr.AttrVisibilityHidden(x) || ldr.AttrLocal(x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
Back to top