Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for preset (0.28 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Enforce ReadWriteOncePod access mode if it is the only one present. This is also enforced during scheduling.
    		if actualStateOfWorld.IsVolumeMountedElsewhere(volumeToMount.VolumeName, volumeToMount.PodName) &&
    			// Because we do not know what access mode the pod intends to use if there are multiple.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // dependencies here, it leads to loss of information. If the function is
          // inlined later, the inliner would not know of these explicit control
          // dependencies present in the original graph.
          continue;
        }
        if (node_values_.find(input_node.id()) == node_values_.end())
          return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				t.Errorf("cluster expected to have weighed config, but is nil")
    			}
    			if tt.expectClusterLoadAssignmenttoBeNil && c.LoadAssignment != nil {
    				t.Errorf("cluster expected not to have load assignmentset, but is present")
    			}
    		})
    	}
    }
    
    func TestBuildStaticClusterWithNoEndPoint(t *testing.T) {
    	g := NewWithT(t)
    
    	service := &model.Service{
    		Hostname: host.Name("static.test"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			// clear the metrics for testing
    			metrics.Register()
    			for _, metric := range []interface{ Reset() }{
    				metrics.DesiredPodCount,
    				metrics.ActivePodCount,
    				metrics.RestartedPodTotal,
    				metrics.OrphanedRuntimePodTotal,
    				metrics.WorkingPodCount,
    			} {
    				metric.Reset()
    			}
    			metrics.MirrorPodCount.Set(0)
    
    			testKubelet := newTestKubelet(t, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    		gotNode = createAction.GetObject()
    		return true, gotNode, nil
    	})
    
    	addNotImplatedReaction(kubeClient)
    
    	// Make node to be unschedulable.
    	kubelet.registerSchedulable = false
    
    	// Reset kubelet status for each test.
    	kubelet.registrationCompleted = false
    
    	// Register node to apiserver.
    	kubelet.registerWithAPIServer()
    
    	// Check the unschedulable taint.
    	got := gotNode.(*v1.Node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

            .build()
        val response = get(url)
        assertThat(response.body.string()).isEqualTo(entryBody)
        assertThat(response.header("Content-Length")).isEqualTo("3")
      }
    
      /** The TLS version is present in OkHttp 3.0 and beyond.  */
      @Test
      fun testGoldenCacheHttpsResponseOkHttp30() {
        val url = server.url("/")
        val urlKey = key(url)
        val prefix = get().getPrefix()
        val entryMetadata =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			activePods:         3,
    			expectedDeletions:  0,
    			expectedPodPatches: 1,
    			expectedActive:     3,
    			expectedReady:      ptr.To[int32](0),
    		},
    		"failed + succeed pods: reset backoff delay": {
    			parallelism:        2,
    			completions:        5,
    			backoffLimit:       6,
    			activePods:         1,
    			succeededPods:      1,
    			failedPods:         1,
    			expectedCreations:  1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          if (llvm::count(start_index_map, c) == 0) {
            return rewriter.notifyMatchFailure(
                gather_op, "collapsed slice dim isn't present in start index map");
          }
        }
    
        // Verify that slice_sizes is 1 for the indexed dimensions and the full
        // shape for the rest of the dimensions.
        auto slice_sizes = gather_op.getSliceSizes();
        int64_t index = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			}
    
    			// Move to the backoff end time
    			fakeClock.Sleep(1 * time.Nanosecond)
    			if manager.failedPodsBackoff.IsInBackOffSinceUpdate(backoffKey, fakeClock.Now()) {
    				t.Fatal("Backoff delay hasn't been reset after the period has passed.")
    			}
    
    			// After backoff time, it will delete the failed pod
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 1, 1)
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		// 'x-envoy-retry-on' supported policies:
    		// https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter.html#x-envoy-retry-on
    		"5xx",
    		"gateway-error",
    		"reset",
    		"connect-failure",
    		"retriable-4xx",
    		"refused-stream",
    		"retriable-status-codes",
    		"retriable-headers",
    		"envoy-ratelimited",
    		"http3-post-connect-failure",
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top