Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for current_pos (0.15 sec)

  1. pkg/controller/daemon/update_test.go

    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 3, 0, 0)
    
    	hash, err := currentDSHash(manager, ds)
    	if err != nil {
    		t.Fatal(err)
    	}
    	currentPods := podsByNodeMatchingHash(manager, hash)
    	// mark two updated pods as ready at time 300
    	setPodReadiness(t, manager, true, 2, func(pod *v1.Pod) bool {
    		return pod.Labels[apps.ControllerRevisionHashLabelKey] == hash
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

      // with the propagation results.
      LogicalResult Finalize();
    
      // Dumps the states stores in the state manager.
      void DumpStates(quantfork::QuantizeRegionOp current_op = {});
    
      // Update the quantization parameter for certain result of the op. By this
      // method, the quantization parameter is propagated to all the users of the
      // result as well.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def platform = Stub(NativePlatformInternal)
    
        def dummyOs = new DefaultOperatingSystem("currentOS", OperatingSystem.current())
        def dummyArch = Architectures.forInput("x86_64")
    
        def "is unavailable when platform is not known and is not the default platform"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    int test5740a(void), test5740b(void);
    
    // issue 5986
    static void output5986()
    {
        int current_row = 0, row_count = 0;
        double sum_squares = 0;
        double d;
        do {
            if (current_row == 10) {
                current_row = 0;
            }
            ++row_count;
        }
        while (current_row++ != 1);
        d =  sqrt(sum_squares / row_count);
        printf("sqrt is: %g\n", d);
    }
    
    // issue 6128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	pods, err := om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		return err
    	}
    	currentPods := map[string]bool{}
    	for _, pod := range pods {
    		currentPods[pod.Name] = true
    	}
    	claims, err := om.claimsLister.PersistentVolumeClaims(set.Namespace).List(selector)
    	if err != nil {
    		return err
    	}
    	for _, claim := range claims {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top