Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Pledge (0.09 sec)

  1. pkg/kube/namespace/filter.go

    			f.lock.Lock()
    			defer f.lock.Unlock()
    			// No need to notify handlers for deletes. The namespace was deleted, so the object will be as well (and a delete could not de-select).
    			// Note that specifically for the edge case of a Namespace watcher that is filtering, this will ignore deletes we should
    			// otherwise send.
    			// See kclient.applyDynamicFilter for rationale.
    			f.namespaceDeletedLocked(ns.ObjectMeta)
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			name:                      "equal edge case",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    			pod: newResourceInitPod(newResourcePod(framework.Resource{MilliCPU: 4, Memory: 1}), framework.Resource{MilliCPU: 5, Memory: 1}),
    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 5, Memory: 19})),
    			name:                      "equal edge case for init container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	namespace := ptr.OrEmpty[*v1.Namespace](krt.FetchOne[*v1.Namespace](ctx, Namespaces, krt.FilterKey(o.Namespace)))
    	// this probably should never be nil. How would o exist in a namespace we know nothing about? maybe edge case of starting the controller or ns delete?
    	if namespace != nil {
    		// toss isNone, we don't need to know /why/ we got nil
    		wpNamespace, _ := getUseWaypoint(namespace.ObjectMeta, fallbackNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/time/format.go

    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    		// case we hope not to hit too often.
    		buf = append(buf, `time.Location(`...)
    		buf = append(buf, quote(loc.name)...)
    		buf = append(buf, ')')
    	}
    	buf = append(buf, ')')
    	return string(buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
      for (const auto& [from, to] : control_edges) {
        for (int what : {from, to}) {
          if (operation_index_to_operator_index.count(what) == 0) {
            module_.emitError(
                "dangling control edge -- at least one vertex Operation isn't a "
                "flatbuffer Operator.");
          }
        }
        model_control_dependencies_[index].emplace_back(
            operation_index_to_operator_index[from],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  6. src/cmd/compile/internal/ssa/debug.go

    	// For the first merge, exclude predecessors that have not been seen yet.
    	// I.e., backedges.
    	for _, pred := range b.Preds {
    		if bl := blockLocs[pred.b.ID]; bl != nil && bl.everProcessed {
    			// crucially, a self-edge has bl != nil, but bl.everProcessed is false the first time.
    			preds = append(preds, pred.b)
    		}
    	}
    
    	locs.everProcessed = true
    
    	if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. RELEASE.md

    * TensorRT support: this is the last release supporting TensorRT. It will be
    removed in the next release.
    * NumPy 2.0 support: TensorFlow is going to support NumPy 2.0 in the next
    release. It may break some edge cases of TensorFlow API usage.
    
    ## Keras
    
    <INSERT SMALL BLURB ABOUT RELEASE FOCUS AREA AND POTENTIAL TOOLCHAIN CHANGES>
    
    ### Breaking Changes
    
    * <DOCUMENT BREAKING CHANGES HERE>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	if k == callDefer || k == callDeferStack {
    		b := s.endBlock()
    		b.Kind = ssa.BlockDefer
    		b.SetControl(call)
    		bNext := s.f.NewBlock(ssa.BlockPlain)
    		b.AddEdgeTo(bNext)
    		// Add recover edge to exit code.
    		r := s.f.NewBlock(ssa.BlockPlain)
    		s.startBlock(r)
    		s.exit()
    		b.AddEdgeTo(r)
    		b.Likely = ssa.BranchLikely
    		s.startBlock(bNext)
    	}
    
    	if len(res) == 0 || k != callNormal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top