Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for statx (0.08 sec)

  1. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.stats --- apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: tcp-stats-filter-1.6-1-6-11 namespace: istio-system labels: istio.io/rev: 1-6-11 spec: configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.6.*' listener: filterChain: filter: name: "envoy.tcp_proxy" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!TFIntListIs1XY1(op, "strides", &height, &width)) return failure();
    
        ConvertTFConvOpMatchState state;
        state.stride_height = height;
        state.stride_width = width;
    
        if (TFIntListIs1XY1(op, "dilations", &height, &width)) {
          state.dilation_height_factor = height;
          state.dilation_width_factor = width;
        } else {
          // If the 'dilations' attribute is missing, we use the default value (1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    	// containers, and any foreground cleanup can be executed.
    	TerminatedPod
    )
    
    func (state PodWorkerState) String() string {
    	switch state {
    	case SyncPod:
    		return "sync"
    	case TerminatingPod:
    		return "terminating"
    	case TerminatedPod:
    		return "terminated"
    	default:
    		panic(fmt.Sprintf("the state %d is not defined", state))
    	}
    }
    
    // PodWorkerSync is the summarization of a single pod worker for sync. Values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Preconditions.java

        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /**
       * Ensures the truth of an expression involving the state of the calling instance, but not
       * involving any parameters to the calling method.
       *
       * @param expression a boolean expression
       * @throws IllegalStateException if {@code expression} is false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	dswp.findAndRemoveDeletedPods()
    
    	if !dswp.pods.processedPods[podName] {
    		t.Fatalf("Pod should not been removed from desired state of world since pod state still thinks it exists")
    	}
    
    	fakePodState.removed = map[kubetypes.UID]struct{}{pod.UID: {}}
    
    	// the pod state is marked as removed, so here findAndRemoveDeletedPods() will remove the pod and volumes it is mounted
    	dswp.findAndRemoveDeletedPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    	if e, a := map[types.UID]PodWorkerSync{
    		"1-normal": {State: SyncPod, HasConfig: true},
    		"2-static": {State: TerminatedPod, HasConfig: true, Static: true},
    		"3-static": {State: TerminatedPod},
    		"4-static": {State: SyncPod, HasConfig: true, Static: true},
    	}, state; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected actual state: %s", cmp.Diff(e, a))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ComponentGraphResolveState state = potentialEdge.state;
            VirtualPlatformState virtualPlatformState = null;
            if (state == null || state instanceof LenientPlatformGraphResolveState) {
                virtualPlatformState = potentialEdge.component.getModule().getPlatformState();
                virtualPlatformState.participatingModule(component.getModule());
            }
            if (state == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        %4 = "quantfork.stats"(%3) {layerStats = dense<[0.000000e+00, 0.18486841]> : tensor<2xf32>} : (tensor<*xf32>) -> tensor<*xf32>
        %5 = "tf.Identity"(%4) {device = ""} : (tensor<*xf32>) -> tensor<*xf32>
        %6 = "quantfork.stats"(%5) {layerStats = dense<[0.000000e+00, 0.18486841]> : tensor<2xf32>} : (tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			// state is produced for test.existingPods (without test.addedPod).
    			ipa, cycleState, state, snapshot := getState(test.existingPods)
    			// clone the state so that we can compare it later when performing Remove.
    			originalState := state.Clone()
    
    			// Add test.addedPod to state1 and verify it is equal to allPodsState.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2, p3, p4));
        }
      }
    
      /**
       * Ensures the truth of an expression involving the state of the calling instance, but not
       * involving any parameters to the calling method.
       *
       * @param expression a boolean expression
       * @throws IllegalStateException if {@code expression} is false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top