Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,000 for pending_ (0.15 sec)

  1. tensorflow/cc/framework/gradients.cc

      std::unordered_map<Output, BackproppedGradients, OutputHash, OutputEq>
          backprops_;
    
      // pending[i] is count-down counter for i-th node's expected
      // backprops.  When pending[i] becomes zero, we collected all
      // backprop gradients for all outputs of the ith-node.
      std::vector<int> pending_;
    
      // `ready` keeps track of nodes that have been completely
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            PendingOperation pending = pendings.remove(finish.id);
                            assert pending != null;
    
                            List<BuildOperationRecord> children = childrens.remove(finish.id);
                            assert children != null;
    
                            SerializedOperationStart start = pending.start;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pkg/proxy/endpointslicecache.go

    // pending value in the cache.
    func (cache *EndpointSliceCache) esDataChanged(serviceKey types.NamespacedName, sliceKey string, esData *endpointSliceData) bool {
    	if _, ok := cache.trackerByServiceMap[serviceKey]; ok {
    		appliedData, appliedOk := cache.trackerByServiceMap[serviceKey].applied[sliceKey]
    		pendingData, pendingOk := cache.trackerByServiceMap[serviceKey].pending[sliceKey]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) DeltaAggregatedResources(downstream DeltaDiscoveryStream) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/ztunnel-dashboard.gen.json

          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Count of active and pending proxies managed by each instance.\nPending is expected to converge to zero.\n",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/Graphs.java

        NodeVisitState state = visitedNodes.get(node);
        if (state == NodeVisitState.COMPLETE) {
          return false;
        }
        if (state == NodeVisitState.PENDING) {
          return true;
        }
    
        visitedNodes.put(node, NodeVisitState.PENDING);
        for (N nextNode : graph.successors(node)) {
          if (canTraverseWithoutReusingEdge(graph, nextNode, previousNode)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/FileCollectionFingerprinterRegistrations.java

                            )
                        )
                    );
                }).collect(toImmutableSet());
        }
    
        /**
         * These fingerprinters are fully sensitive to both line endings and empty directories
         */
        private static List<? extends FileCollectionFingerprinter> fullySensitiveFingerprinters(
            DirectorySensitivity directorySensitivity,
            StringInterner stringInterner,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/pushqueue.go

    	shuttingDown bool
    }
    
    func NewPushQueue() *PushQueue {
    	return &PushQueue{
    		pending:    make(map[*Connection]*model.PushRequest),
    		processing: make(map[*Connection]*model.PushRequest),
    		cond:       sync.NewCond(&sync.Mutex{}),
    	}
    }
    
    // Enqueue will mark a proxy as pending a push. If it is already pending, pushInfo will be merged.
    // ServiceEntry updates will be added together, and full will be set if either were full
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/Graphs.java

        NodeVisitState state = visitedNodes.get(node);
        if (state == NodeVisitState.COMPLETE) {
          return false;
        }
        if (state == NodeVisitState.PENDING) {
          return true;
        }
    
        visitedNodes.put(node, NodeVisitState.PENDING);
        for (N nextNode : graph.successors(node)) {
          if (canTraverseWithoutReusingEdge(graph, nextNode, previousNode)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	for {
    		// r.done() only blocks if state is Pending
    		select {
    		case <-ctx.Done():
    			return 0, ctx.Err()
    		case <-r.done():
    		}
    
    		r.lock.RLock()
    		switch r.state {
    		case Pending:
    			// since we allow to switch between the states Pending and Ready
    			// if there is a quick transition from Pending -> Ready -> Pending
    			// a process that was waiting can get unblocked and see a Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top