Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Unreserve (1.1 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    			wantStatus:         framework.Success,
    		},
    		{
    			name:               "Reserve - Success",
    			action:             func(f framework.Framework) { f.RunReservePluginsReserve(context.Background(), state, pod, "") },
    			wantExtensionPoint: "Reserve",
    			wantStatus:         framework.Success,
    		},
    		{
    			name:               "Unreserve - Success",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	}{
    		{
    			name:       "error reserve pod",
    			sendPod:    podWithID("foo", ""),
    			mockResult: mockScheduleResult{ScheduleResult{SuggestedHost: testNode.Name, EvaluatedNodes: 1, FeasibleNodes: 1}, nil},
    			registerPluginFuncs: []tf.RegisterPluginFunc{
    				tf.RegisterReservePlugin("FakeReserve", tf.NewFakeReservePlugin(framework.NewStatus(framework.Error, "reserve error"))),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        const std::string& summary_title) {
      std::string op_str;
      llvm::raw_string_ostream os(op_str);
    
      std::vector<std::string> keys;
      keys.reserve(ops.size());
    
      std::vector<std::string> values;
      values.reserve(ops.size());
    
      for (auto const& op_name_and_details : ops) {
        keys.push_back(op_name_and_details.first);
        for (auto const& op_detail : op_name_and_details.second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        if (subtypes.empty()) {
          continue;
        }
        auto subtype = mlir::dyn_cast<ShapedType>(subtypes.front());
        if (subtype == nullptr) {
          continue;
        }
        // Preserve the dtype from the restore op even if `AssignVariableOp` uses a
        // different dtype, which is possible when there's a `CastOp` between them.
        subtype = subtype.clone(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
        not provided at certain stages of IR transformation (e.g. pre-placement).
    
        Option `ops-to-preserve` allows to specify ops that should not be pruned,
        regardless of their reachability.
    
        For example, the following:
    
        ```mlir
        func @graph(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// only name and generateName are accessible on metadata
    				"has(self.embedded.metadata.namespace)": "undefined field 'namespace'",
    			},
    		},
    		{name: "embedded object with preserve unknown",
    			obj: map[string]interface{}{
    				"embedded": map[string]interface{}{
    					"apiVersion": "v1",
    					"kind":       "Pod",
    					"metadata": map[string]interface{}{
    						"name":         "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		s.Resize = kl.determinePodResizeStatus(pod, s)
    	}
    	// calculate the next phase and preserve reason
    	allStatus := append(append([]v1.ContainerStatus{}, s.ContainerStatuses...), s.InitContainerStatuses...)
    	s.Phase = getPhase(pod, allStatus, podIsTerminal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			continue
    		}
    
    		if quote != 0 && c == quote {
    			quote = 0
    			continue
    		}
    		switch quote {
    		case '\'':
    			// “preserve the literal value of each character”
    			flag = append(flag, c)
    			continue
    		case '"':
    			// “preserve the literal value of all characters within the double-quotes,
    			// with the exception of …”
    			switch c {
    			case '`', '$', '\\':
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    	}
    	// Store the preserved compression metadata.
    	for k, v := range compressMetadata {
    		srcInfo.UserDefined[k] = v
    	}
    
    	// We need to preserve the encryption headers set in EncryptRequest,
    	// so we do not want to override them, copy them instead.
    	for k, v := range encMetadata {
    		srcInfo.UserDefined[k] = v
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // setting the Reuse field to true. Normally the module cache provides this
    // kind of reuse automatically; the -reuse flag can be useful on systems that
    // do not preserve the module cache.
    //
    // For more about build flags, see 'go help build'.
    //
    // For more about specifying packages, see 'go help packages'.
    //
    // For more about modules, see https://golang.org/ref/mod.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top