Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Microseconds (0.19 sec)

  1. cmd/metrics-v2.go

    				})
    
    				for apiName, latency := range disk.Metrics.LastMinute {
    					metrics = append(metrics, MetricV2{
    						Description:    getNodeDriveAPILatencyMD(),
    						Value:          float64(latency.Avg().Microseconds()),
    						VariableLabels: map[string]string{"drive": disk.DrivePath, "api": "storage." + apiName},
    					})
    				}
    			}
    		}
    
    		metrics = append(metrics, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/time/tick_test.go

    	defer wg.Wait()
    
    	// Build up the timer heap.
    	const count = 5000
    	wg.Add(count)
    	for range count {
    		go func() {
    			defer wg.Done()
    			Sleep(10 * Microsecond)
    		}()
    	}
    	for range count {
    		Sleep(1 * Microsecond)
    	}
    
    	// Give ourselves 60 seconds to complete.
    	// This used to reliably fail on a Mac M3 laptop,
    	// which needed 77 seconds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. src/time/format.go

    		}
    		x = y
    		scale *= 10
    	}
    	return x, scale, s[i:]
    }
    
    var unitMap = map[string]uint64{
    	"ns": uint64(Nanosecond),
    	"us": uint64(Microsecond),
    	"µs": uint64(Microsecond), // U+00B5 = micro symbol
    	"μs": uint64(Microsecond), // U+03BC = Greek letter mu
    	"ms": uint64(Millisecond),
    	"s":  uint64(Second),
    	"m":  uint64(Minute),
    	"h":  uint64(Hour),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Int64Tensor, [{An int that speficies at which step the predictions are generated.}]>:$step,
        Arg<TF_Int64Tensor, [{The utc timestamp in microseconds of when the predictions were created.}]>:$timestamp_usec,
    
        StrArrayAttr:$prediction_names,
        BoolAttr:$training,
        StrAttr:$file_path
      );
    
      let results = (outs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		p := st.MakePod().Name(fmt.Sprintf("test-pod-%v", i)).Namespace("ns1").UID(fmt.Sprintf("tp00%v", i)).Priority(highPriority).Node("node1").NominatedNodeName("node1").Obj()
    		q.Add(logger, p)
    	}
    	c.Step(time.Microsecond)
    	// Simulate a pod being popped by the scheduler, determined unschedulable, and
    	// then moved back to the active queue.
    	p1, err := q.Pop(logger)
    	if err != 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)
  6. pkg/controller/job/job_controller_test.go

    			if err != nil {
    				t.Errorf("Could not create Job: %v", err)
    			}
    
    			var j *batch.Job
    			err = wait.PollUntilContextTimeout(ctx, 200*time.Microsecond, 3*time.Second, true, func(ctx context.Context) (done bool, err error) {
    				j, err = clientset.BatchV1().Jobs(metav1.NamespaceDefault).Get(ctx, job.GetName(), metav1.GetOptions{})
    				if err != nil {
    					return false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top