Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 274 for states_ (0.25 sec)

  1. android/guava/src/com/google/common/math/Stats.java

       * versions.
       */
      public static Stats fromByteArray(byte[] byteArray) {
        checkNotNull(byteArray);
        checkArgument(
            byteArray.length == BYTES,
            "Expected Stats.BYTES = %s remaining , got %s",
            BYTES,
            byteArray.length);
        return readFrom(ByteBuffer.wrap(byteArray).order(ByteOrder.LITTLE_ENDIAN));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

          for (Type& type : llvm::make_range(&state_->types[original_size],
                                             state_->types.end())) {
            Type output_type;
            TF_RETURN_IF_ERROR(AddRef(type, &output_type));
            type = output_type;
          }
        }
      }
      for (auto& it : attrs_) state_->addAttribute(it.first(), it.second);
      *state = state_.get();
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

          : status_(init.status),
            tensor_(init.tensor) {}
    
      Input(const Tensor& t)  // NOLINT(runtime/explicit)
          : status_(absl::OkStatus()), tensor_(t) {}
    
      Input(const std::initializer_list<Initializer>&
                init) {  // NOLINT(runtime/explicit)
        for (const auto& i : init) {
          if (!i.status.ok()) {
            status_ = i.status;
            return;
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system.
    message PodStatus {
      // Current condition of the pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutinegen.go

    	l := ev.Label()
    	g.gStates[l.Resource.Goroutine()].setLabel(l.Label)
    }
    
    func (g *goroutineGenerator) GoroutineRange(ctx *traceContext, ev *trace.Event) {
    	r := ev.Range()
    	switch ev.Kind() {
    	case trace.EventRangeBegin:
    		g.gStates[r.Scope.Goroutine()].rangeBegin(ev.Time(), r.Name, ev.Stack())
    	case trace.EventRangeActive:
    		g.gStates[r.Scope.Goroutine()].rangeActive(r.Name)
    	case trace.EventRangeEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            @SuppressWarnings("unchecked")
            final Map<String, StateData> states = (Map<String, StateData>) session.getAttribute(STATES);
            if (states != null) {
                final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
                states.entrySet().stream().filter(e -> (now - e.getValue().getExpiration()) / 1000L > getStateTtl()).map(Map.Entry::getKey)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/trace/threadgen.go

    	l := ev.Label()
    	g.gStates[l.Resource.Goroutine()].setLabel(l.Label)
    }
    
    func (g *threadGenerator) GoroutineRange(ctx *traceContext, ev *trace.Event) {
    	r := ev.Range()
    	switch ev.Kind() {
    	case trace.EventRangeBegin:
    		g.gStates[r.Scope.Goroutine()].rangeBegin(ev.Time(), r.Name, ev.Stack())
    	case trace.EventRangeActive:
    		g.gStates[r.Scope.Goroutine()].rangeActive(r.Name)
    	case trace.EventRangeEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

        @Override
        public void running() {
          ServiceManagerState state = this.state.get();
          if (state != null) {
            state.transitionService(service, STARTING, RUNNING);
          }
        }
    
        @Override
        public void stopping(State from) {
          ServiceManagerState state = this.state.get();
          if (state != null) {
            state.transitionService(service, from, STOPPING);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top