Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for pname (0.14 sec)

  1. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            for (final Field field : clazz.getDeclaredFields()) {
                final String fname = field.getName();
                if (fieldDescCache.containsKey(fname)) {
                    continue;
                }
                setFieldAccessible(field);
                final FieldDescImpl fieldDesc = new FieldDescImpl(this, field);
                fieldDescCache.put(fname, fieldDesc);
                if (!FieldUtil.isInstanceField(field)) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	return next, v, true
    }
    
    func (m *mappedFile) lookup(name string) (v *atomic.Uint64, headOff, head uint32, ok bool) {
    	h := hash(name)
    	headOff = m.hdrLen + hashOff + h*4
    	head = m.load32(headOff)
    	off := head
    	for off != 0 {
    		ename, next, v, ok := m.entryAt(off)
    		if !ok {
    			return nil, 0, 0, false
    		}
    		if string(ename) == name {
    			return v, headOff, head, true
    		}
    		off = next
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    	for i, a := range analyzers {
    		analyzerNames[i] = a.Metadata().Name
    		nameToAnalyzer[a.Metadata().Name] = a
    	}
    	sort.Strings(analyzerNames)
    
    	var b strings.Builder
    	for _, aName := range analyzerNames {
    		b.WriteString(fmt.Sprintf("* %s:\n", aName))
    		a := nameToAnalyzer[aName]
    		if a.Metadata().Description != "" {
    			b.WriteString(fmt.Sprintf("    %s\n", a.Metadata().Description))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    			}
    		} else {
    			priorities[gv.Group] = info.GroupPriorityMinimum
    		}
    	}
    
    	sort.SliceStable(groups, func(i, j int) bool {
    		iName := groups[i].Name
    		jName := groups[j].Name
    
    		// Default to 0 priority by default
    		iPriority := priorities[iName]
    		jPriority := priorities[jName]
    
    		// Sort discovery based on apiservice priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers.go

    		string(podUID)}, logPathDelimiter))
    }
    
    // parsePodUIDFromLogsDirectory parses pod logs directory name and returns the pod UID.
    // It supports both the old pod log directory /var/log/pods/UID, and the new pod log
    // directory /var/log/pods/NAMESPACE_NAME_UID.
    func parsePodUIDFromLogsDirectory(name string) types.UID {
    	parts := strings.Split(name, logPathDelimiter)
    	return types.UID(parts[len(parts)-1])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	}
    
    	fakeRunner := &containertest.FakeContainerCommandRunner{}
    	fakeHTTP := &fakeHTTP{}
    	fakePodStatusProvider := podStatusProviderFunc(func(uid types.UID, name, namespace string) (*kubecontainer.PodStatus, error) {
    		return &kubecontainer.PodStatus{
    			ID:        uid,
    			Name:      name,
    			Namespace: namespace,
    			IPs: []string{
    				"127.0.0.1",
    			},
    		}, nil
    	})
    
    	lcHanlder := lifecycle.NewHandlerRunner(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/prune.go

    		{Group: "", Version: "v1", Kind: name.SecretStr},
    		{Group: "", Version: "v1", Kind: name.SAStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.RoleBindingStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.RoleStr},
    		{Group: "policy", Version: "v1", Kind: name.PDBStr},
    		{Group: "autoscaling", Version: "v2", Kind: name.HPAStr},
    		gvk.EnvoyFilter.Kubernetes(),
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/runtime/iface.go

    		itype := toRType(&inter.Type).typeOff(i.Typ)
    		name := toRType(&inter.Type).nameOff(i.Name)
    		iname := name.Name()
    		ipkg := pkgPath(name)
    		if ipkg == "" {
    			ipkg = inter.PkgPath.Name()
    		}
    		for ; j < nt; j++ {
    			t := &xmhdr[j]
    			rtyp := toRType(typ)
    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    				pkgPath := pkgPath(tname)
    				if pkgPath == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar.go

    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    			hostsByNamespace[ns] = hostClassification{exactHosts: sets.New[host.Name](), allHosts: make([]host.Name, 0)}
    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  10. src/net/net_windows_test.go

    		if len(group) == 0 {
    			return
    		}
    		tname := strings.ToLower(getValue("Transport Name"))
    		if tname == "n/a" {
    			// skip these
    			return
    		}
    		addr := strings.ToLower(getValue("Physical Address"))
    		if addr == "disabled" || addr == "n/a" {
    			// skip these
    			return
    		}
    		addr = strings.ReplaceAll(addr, "-", ":")
    		cname := getValue("Connection Name")
    		want[cname] = addr
    		group = make(map[string]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top