Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 800 for states (0.16 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultProject.xml

        <component name="masterDetails">
            <states>
                <state key="ArtifactsStructureConfigurable.UI">
                    <UIState>
                        <splitter-proportions>
                            <SplitterProportionsDataImpl/>
                        </splitter-proportions>
                        <settings/>
                    </UIState>
                </state>
                <state key="Copyright.UI">
                    <UIState>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // result without creating new entry in the state vector. Otherwise, allocate
      // a new entry in the state vector.
      void InitializeArgState(BlockArgument arg, Value arg_value);
    
      // Sets the state of the index-th operand of the op. If this operand is
      // cached, uses the cached result without creating new entry in the state
      // vector. Otherwise, allocate a new entry in the state vector.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
    	Type CarpConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=CarpConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

        <mapping directory="" vcs=""/>
      </component>
      <component name="masterDetails">
        <states>
          <state key="ArtifactsStructureConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
              </splitter-proportions>
              <settings/>
            </UIState>
          </state>
          <state key="Copyright.UI">
            <UIState>
              <splitter-proportions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

        <mapping directory="" vcs=""/>
      </component>
      <component name="masterDetails">
        <states>
          <state key="ArtifactsStructureConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
              </splitter-proportions>
              <settings/>
            </UIState>
          </state>
          <state key="Copyright.UI">
            <UIState>
              <splitter-proportions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

        <mapping directory="" vcs=""/>
      </component>
      <component name="masterDetails">
        <states>
          <state key="ArtifactsStructureConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
              </splitter-proportions>
              <settings/>
            </UIState>
          </state>
          <state key="Copyright.UI">
            <UIState>
              <splitter-proportions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

    import static com.google.common.util.concurrent.Service.State.FAILED;
    import static com.google.common.util.concurrent.Service.State.NEW;
    import static com.google.common.util.concurrent.Service.State.RUNNING;
    import static com.google.common.util.concurrent.Service.State.STARTING;
    import static com.google.common.util.concurrent.Service.State.STOPPING;
    import static com.google.common.util.concurrent.Service.State.TERMINATED;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Service.java

      boolean isRunning();
    
      /** Returns the lifecycle state of the service. */
      State state();
    
      /**
       * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
       * this initiates service shutdown and returns immediately. If the service is {@linkplain
       * State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been started nor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Service.java

      boolean isRunning();
    
      /** Returns the lifecycle state of the service. */
      State state();
    
      /**
       * If the service is {@linkplain State#STARTING starting} or {@linkplain State#RUNNING running},
       * this initiates service shutdown and returns immediately. If the service is {@linkplain
       * State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been started nor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top