Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for step2 (2.04 sec)

  1. samples/addons/grafana.yaml

    istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"refId":"A","step":4}],"title":"Global Request Volume","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31, 120, 193)","mode":"fixed"},"mappings":[{"options":{"match":"null","result":{"text":"N/A"}},"type":"special"}],"thresholds":{"mode":"absolute","steps":[{"color":"rgba(245, 54, 54, 0.9)","value":null},{"color":"rgba(237, 129, 40, 0.89)","va...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "semi-dark-red",
                    "value": 80
                  }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager_test.go

    	if podKiller.pod != nil {
    		t.Errorf("Manager should not have killed a pod yet, but killed: %v", podKiller.pod.Name)
    	}
    
    	// step forward in time pass the grace period
    	fakeClock.Step(3 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("1500Mi", podStats)
    	_, 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)
  4. src/reflect/value.go

    			if !tv.IfaceIndir() {
    				// Pointer-valued data gets put directly
    				// into v.ptr.
    				if steps[0].kind != abiStepPointer {
    					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
    					panic("mismatch between ABI description and types")
    				}
    				ret[i] = Value{tv, regArgs.Ptrs[steps[0].ireg], flag(tv.Kind())}
    				continue
    			}
    
    			// All that's left is values passed in registers that we need to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	podID := types.NamespacedName{
    		Namespace: pod.Namespace,
    		Name:      pod.Name,
    	}
    	if err := q.Add(logger, pod); err != nil {
    		t.Fatal(err)
    	}
    
    	for i, step := range steps {
    		t.Run(fmt.Sprintf("step %d", i), func(t *testing.T) {
    			timestamp := cl.Now()
    			// Simulate schedule attempt.
    			podInfo, err := q.Pop(logger)
    			if err != nil {
    				t.Fatal(err)
    			}
    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/volume/util/operationexecutor/operation_generator.go

    	}, nil
    }
    
    // GenerateUnmapVolumeFunc marks volume as unmonuted based on following steps.
    // Remove symbolic links from pod device map path dir and  global map path dir.
    // Once those cleanups are done, remove pod device map path dir.
    // If all steps are completed, the volume is marked as unmounted.
    func (og *operationGenerator) GenerateUnmapVolumeFunc(
    	volumeToUnmount MountedVolume,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        # shellcheck disable=2064
        trap "${t}" EXIT
      else
        # If no traps in stack, clear.
        trap EXIT
      fi
    }
    
    # Logs the end of a bootstrap step that errored.
    # Args:
    #  $1 : bootstrap step name.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-error {
      local bootstep="$1"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	return nil
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func simulateVolumeInUseUpdate(
    	volumeName v1.UniqueVolumeName,
    	stopCh <-chan struct{},
    	volumeManager kubeletvolume.VolumeManager) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      echo "Creating load balancer in front of an already existing master in ${EXISTING_MASTER_ZONE}"
    
      # Step 1: Detach master IP address and attach ephemeral address to the existing master
      attach-external-ip "${EXISTING_MASTER_NAME}" "${EXISTING_MASTER_ZONE}"
    
      # Step 2: Create target pool.
      gcloud compute target-pools create "${MASTER_NAME}" --project "${PROJECT}" --region "${REGION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            # Restore the logger verbosity.
            logging.set_verbosity(prev_log_level)
    
          self.assertNotEmpty(info_logs.records)
          self.assertTrue(
              self._any_log_contains(
                  'Calibration step is executed in graph mode.',
                  info_logs.records,
              )
          )
    
    
    class TensorNamePreservationTest(quantize_model_test_base.QuantizedModelTest):
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top