Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 214 for gives (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Returns all resources accessed by the regions attached the op.
      auto& GetResources() { return resources_; }
    
      // Returns if the given value is a resource that needs lifting.
      bool Contains(Value resource) const {
        return resources_.find(resource) != resources_.end();
      }
    
      // Drops the given resource from lifting.
      void DropResource(Value resource) {
        resources_.erase(resource);
        written_resources_.remove(resource);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return nil, err
    	}
    	return info.storages[info.storageVersion].CustomResource, nil
    }
    
    // getOrCreateServingInfoFor gets the CRD serving info for the given CRD UID if the key exists in the storage map.
    // Otherwise the function fetches the up-to-date CRD using the given CRD name and creates CRD serving info.
    func (r *crdHandler) getOrCreateServingInfoFor(uid types.UID, name string) (*crdInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// correct for a newly-grown chunk. (New memory is scavenged.)
    	scavChunkHasFree scavChunkFlags = 1 << iota
    
    	// scavChunkMaxFlags is the maximum number of flags we can have, given how
    	// a scavChunkData is packed into 8 bytes.
    	scavChunkMaxFlags  = 6
    	scavChunkFlagsMask = (1 << scavChunkMaxFlags) - 1
    
    	// logScavChunkInUseMax is the number of bits needed to represent the number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    Asynchronously executes a function, potentially across multiple devices but
    within a single process. The kernel places and partitions a given function's
    underlying graph, and executes each of the partitioned subgraphs as a function.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
    
        FlatSymbolRefAttr:$f,
        StrAttr:$config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    // map to the same storage identity.
    type StatefulSet struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		if raceenabled {
    			// The race detector assumes the heap lives in
    			// [0x00c000000000, 0x00e000000000), but we
    			// just ran out of hints in this region. Give
    			// a nice failure.
    			throw("too many address space collisions for -race mode")
    		}
    
    		// All of the hints failed, so we'll take any
    		// (sufficiently aligned) address the kernel will give
    		// us.
    		v, size = sysReserveAligned(nil, n, heapArenaBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - Dependency resolution is cached.
    - Configuration state and dependency resolution state is discarded from heap after writing the task graph. This reduces the peak heap usage required for a given set of tasks.
    
    [[config_cache:in_action]]
    === Configuration caching in action
    
    // TODO-RC redo demo so it no longer shows as incubating
    image::configuration-cache/running-help.gif[]
    
    [[config_cache:usage]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    					DNSPolicy:     v1.DNSDefault,
    					NodeSelector: map[string]string{
    						"baz": "blah",
    					},
    				},
    			},
    		},
    	}
    	return rs
    }
    
    // create a pod with the given phase for the given rs (same selectors and namespace)
    func newPod(name string, rs *apps.ReplicaSet, status v1.PodPhase, lastTransitionTime *metav1.Time, properlyOwned bool) *v1.Pod {
    	var conditions []v1.PodCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    				break
    			}
    		}
    	}
    	if !equal {
    		t.Errorf("expected failure reasons %s, got %s", reasonNames(expected), reasonNames(actual))
    	}
    }
    
    // findPodVolumes gets and finds volumes for given pod and node
    func findPodVolumes(logger klog.Logger, binder SchedulerVolumeBinder, pod *v1.Pod, node *v1.Node) (*PodVolumes, ConflictReasons, error) {
    	podVolumeClaims, err := binder.GetPodVolumeClaims(logger, pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    	cache.removeGroupFromMembershipsMap(group)
    	cache.updateGroupMembershipsMap(group, &gi)
    	cache.updatedAt = time.Now()
    	return nil
    }
    
    // PolicyDBGet - fetches policies associated with the given user or group, and
    // additional groups if provided.
    func (store *IAMStoreSys) PolicyDBGet(name string, groups ...string) ([]string, error) {
    	if name == "" {
    		return nil, errInvalidArgument
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top