Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for because3 (0.19 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                            eachDependency { it.useVersion('2.0'); it.because("RULE 2") }
                            dependencySubstitution {
                                substitute module('org:foo') because "SUBSTITUTION 1" using module('org:foo:3.0')
                                substitute module('org:foo') because "SUBSTITUTION 2" using module('org:bar:2.0')
                                all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			initialPods: []*v1.Pod{pod},
    			actions: []action{
    				// This Pod shouldn't be added to inFlightPods because SchedulingQueueHint is disabled.
    				{podPopped: pod},
    				// This event shouldn't be added to inFlightEvents because SchedulingQueueHint is disabled.
    				{eventHappens: &PvAdd},
    			},
    			wantInFlightPods:   nil,
    			wantInFlightEvents: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    func allGsSnapshot() []*g {
    	assertWorldStoppedOrLockHeld(&allglock)
    
    	// Because the world is stopped or allglock is held, allgadd
    	// cannot happen concurrently with this. allgs grows
    	// monotonically and existing entries never change, so we can
    	// simply return a copy of the slice header. For added safety,
    	// we trim everything past len because that can still change.
    	return allgs[:len(allgs):len(allgs)]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    	manager.thresholdNotifiers = []ThresholdNotifier{thresholdNotifier}
    
    	// The UpdateThreshold method should be called because at least notifierRefreshInterval time has passed.
    	// The Description method should be called because UpdateThreshold returned an error
    	fakeClock.Step(2 * notifierRefreshInterval)
    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		OperationFunc:     volumesAreAttachedFunc,
    		CompleteFunc:      util.OperationCompleteHook(util.GetFullQualifiedPluginNameForVolume("<n/a>", nil), "verify_volumes_are_attached_per_node"),
    		EventRecorderFunc: nil, // nil because we do not want to generate event on error
    	}, nil
    }
    
    func (og *operationGenerator) GenerateAttachVolumeFunc(
    	logger klog.Logger,
    	volumeToAttach VolumeToAttach,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // assume `[i, o]` format for `stablehlo.dot_general` (i.e. contracting
    // dimension == 1) whereas `tfl.fully_connected` accepts an `[o, i]` format.
    // If there is already a [i, o] -> [o, i] `stablehlo.transpose` in between the
    // constant and `rhs_op`, simply create an equivalent `tfl.qconst` from the
    // `stablehlo.constant` because it already suffices the desired format.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    	}
    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// will be preserved because it's the current hash
    	pod := newPod("node-1-", "node-1", simpleDaemonSetLabel, ds)
    	pod.CreationTimestamp.Time = time.Unix(100, 0)
    	manager.podStore.Add(pod)
    
    	// will be preserved because it's the oldest AND it is ready
    	pod = newPod("node-1-old-", "node-1", simpleDaemonSetLabel, ds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	lastStatusReportTime time.Time
    
    	// syncNodeStatusMux is a lock on updating the node status, because this path is not thread-safe.
    	// This lock is used by Kubelet.syncNodeStatus and Kubelet.fastNodeStatusUpdate functions and shouldn't be used anywhere else.
    	syncNodeStatusMux sync.Mutex
    
    	// updatePodCIDRMux is a lock on updating pod CIDR, because this path is not thread-safe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	// One common case this prevents is a kubelet restart reading pods before services and some pod not having the
    	// KUBERNETES_SERVICE_HOST injected because we didn't wait a short time for services to sync before proceeding.
    	// The KUBERNETES_SERVICE_HOST link is special because it is unconditionally injected into pods and is read by the
    	// in-cluster-config for pod clients
    	if !kubetypes.IsStaticPod(pod) && !kl.serviceHasSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

            g->AddControlEdge(recv_at_host_node, edge.dst);
          } else {
            g->AddEdge(recv_at_host_node, index, edge.dst, edge.dst_input);
          }
        }
    
        // Rewrite dst nodes because their input changed.
        for (int i = 0, end = out_edge_info.size(); i < end; i++) {
          const OutEdgeInfo edge = out_edge_info[i];
          if (edge.dst_input == Graph::kControlSlot) {
            continue;
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top