Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Statuses (0.12 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		return 0
    	case L:
    		return 0
    	default: // AL, R
    		return 1
    	}
    }
    
    const maxDepth = 125
    
    // This stack will store the embedding levels and override and isolated
    // statuses
    type directionalStatusStack struct {
    	stackCounter        int
    	embeddingLevelStack [maxDepth + 1]level
    	overrideStatusStack [maxDepth + 1]Class
    	isolateStatusStack  [maxDepth + 1]bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	// if they're rejected in PreFilter (via PreFilterResult) or Filter plugins.
    	// Nodes that pass PreFilter/Filter plugins are not included in this map.
    	// While this map may contain UnschedulableAndUnresolvable statuses, the absence of
    	// a node should be interpreted as UnschedulableAndUnresolvable.
    	NodeToStatusMap NodeToStatusMap
    	// UnschedulablePlugins are plugins that returns Unschedulable or UnschedulableAndUnresolvable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    using ::tensorflow::calibrator::CalibrationStatisticsMap;
    using ::testing::Contains;
    using ::testing::ElementsAre;
    using ::testing::HasSubstr;
    using ::testing::Key;
    using ::testing::SizeIs;
    using ::tsl::testing::StatusIs;
    
    class CalibrationStatisticsSaverTest : public OpsTestBase {};
    
    TEST_F(CalibrationStatisticsSaverTest, MissingOutputPath) {
      std::vector<std::string> ids{"1"};
      std::vector<int32_t> calibration_methods{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_executable_persistor_test.cc

      EXPECT_THAT(
          persistor.TryToPersistExecutable(
              /*signature_hash=*/123, "signature_string", DefaultXlaOptions(),
              compilation_result_add_, *executable, &mock_client),
          testing::StatusIs(error::INVALID_ARGUMENT));
    }
    
    TEST_F(DeviceExecutionPersistorTest, PersistExecutableEmpty) {
      XlaDeviceExecutablePersistor::Config config(
          /*persistent_cache_directory=*/cache_dir_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top