Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 196 for Pids (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

            return func_op.getArgAttr(arg.getArgNumber(), kResourceArgUniqueIdAttr);
          });
      if (has_arg_unique_id_attrs) {
        // Resource arguments have IDs attached (via `kResourceArgUniqueIdAttr`)
        // that represent different resources. Map those IDs to the internal
        // instance IDs used by this pass.
        llvm::SmallDenseMap<int64_t, int64_t> attr_id_to_internal_id;
        for (auto arg : filter_resources(func_op.getArguments())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/generate-clients.md

    But I'll show you how to improve that next. 🤓
    
    ## Custom Operation IDs and Better Method Names
    
    You can **modify** the way these operation IDs are **generated** to make them simpler and have **simpler method names** in the clients.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/podcgroupns.go

    			// More than one container ID found in the cgroups.
    			return "", "", fmt.Errorf("multiple container IDs found in cgroups (%s, %s)",
    				containerID, candidateContainerID)
    		case podUID != candidatePodUID:
    			// More than one pod UID found in the cgroups.
    			return "", "", fmt.Errorf("multiple pod UIDs found in cgroups (%s, %s)",
    				podUID, candidatePodUID)
    		}
    	}
    
    	return podUID, containerID, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. security/pkg/pki/util/keycertbundle.go

    	b.mutex.RLock()
    	defer b.mutex.RUnlock()
    	ids, err := ExtractIDs(b.cert.Extensions)
    	if err != nil {
    		return nil, fmt.Errorf("failed to extract id %v", err)
    	}
    	if len(ids) != 1 {
    		return nil, fmt.Errorf("expect single id from the cert, found %v", ids)
    	}
    
    	opts := &CertOptions{
    		Host:      ids[0],
    		Org:       b.cert.Issuer.Organization[0],
    		IsCA:      b.cert.IsCA,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/internal/xcoff/xcoff.go

    	Lnreloc  uint32 // Number of relocation table entries
    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  uint32 // Number of import file IDs
    	Limpoff  uint32 // Offset to start of import file IDs
    	Lstlen   uint32 // Length of string table
    	Lstoff   uint32 // Offset to start of string table
    }
    
    type LoaderHeader64 struct {
    	Lversion uint32 // Loader section version number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    // own input action ID as its output action ID (short of a miraculous hash collision).
    // Instead we use the content IDs to compute the next action ID, and because
    // the content IDs converge, so too do the action IDs and therefore the
    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    // for the actual convergence sequence.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/crypto/x509/parser.go

    			return nil, errors.New("x509: invalid certificate policies")
    		}
    		oid, ok := newOIDFromDER(OIDBytes)
    		if !ok {
    			return nil, errors.New("x509: invalid certificate policies")
    		}
    		oids = append(oids, oid)
    	}
    	return oids, nil
    }
    
    // isValidIPMask reports whether mask consists of zero or more 1 bits, followed by zero bits.
    func isValidIPMask(mask []byte) bool {
    	seenZero := false
    
    	for _, b := range mask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/model_test.go

    			useAuthenticated: true,
    			action:           rbacpb.RBAC_ALLOW,
    			want: []*rbacpb.Principal{
    				{
    					Identifier: &rbacpb.Principal_OrIds{
    						OrIds: &rbacpb.Principal_Set{
    							Ids: []*rbacpb.Principal{
    								{
    									Identifier: &rbacpb.Principal_Authenticated_{
    										Authenticated: &rbacpb.Principal_Authenticated{
    											PrincipalName: &matcherv3.StringMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/topology_hints.go

    	}
    
    	return hints
    }
    
    func (m *ManagerImpl) getNUMANodeIds(topology *pluginapi.TopologyInfo) []int {
    	if topology == nil {
    		return nil
    	}
    	var ids []int
    	for _, n := range topology.Nodes {
    		ids = append(ids, int(n.ID))
    	}
    	return ids
    }
    
    func (m *ManagerImpl) getPodDeviceRequest(pod *v1.Pod) map[string]int {
    	// for these device plugin resources, requests == limits
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top