Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for states_ (0.34 sec)

  1. pkg/printers/internalversion/printers.go

    	var states []string
    	if obj.DeletionTimestamp != nil {
    		states = append(states, "deleted")
    	}
    	if obj.Status.Allocation == nil {
    		if obj.DeletionTimestamp == nil {
    			states = append(states, "pending")
    		}
    	} else {
    		states = append(states, "allocated")
    		if len(obj.Status.ReservedFor) > 0 {
    			states = append(states, "reserved")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		ts.Config.ConnState = func(c net.Conn, state ConnState) {
    			if c == nil {
    				t.Errorf("nil conn seen in state %s", state)
    				return
    			}
    			sl := <-activeLog
    			if sl.active == nil && state == StateNew {
    				sl.active = c
    			} else if sl.active != c {
    				t.Errorf("unexpected conn in state %s", state)
    				activeLog <- sl
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          // TODO: b/326332748 - For forward convolution in transpose_conv,
          // IsSamePadding calculation may need to be updated.
          // Reference: https://arxiv.org/pdf/1603.07285.pdf
          // Section 4.6 > Relationship 13 states `stride_dim = dilation + 1`.
          rewriter.replaceOpWithNewOp<TFL::TransposeConvOp>(
              // op result should be recasted to desired quantized type.
              op, output_type, /*output_shape=*/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          // The reduce function __reduce_func has 36 arguments, and the source of those arguments are listed below:
          //   [arg0, arg5]:   these are states coming from ReduceDatasetOp's [arg1, arg6]
          //   [arg6: arg14]:  these are the input elements coming from the output of %51:9
          //   [arg15: arg35]: these are the captured elements from ReduceDatasetOp's [arg7:arg27]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        // Projection weight and bias
        TFL_TensorOfOrNone<[F32, QI8]>:$projection_weights,
        // Optional input
        TFL_TensorOfOrNone<[F32, QI32]>:$projection_bias,
    
        // Stateful activation and cell states.
        TFL_StatefulTensor:$input_activation_state,
        TFL_StatefulTensor:$input_cell_state,
    
        // Layer norm coefficients
        TFL_TensorOfOrNone<[F32, QI16]>:$input_layer_norm_coefficients,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      input_shapes.reserve(op.getArgs().size());
      for (mlir::Type type : op.getArgs().getTypes()) {
        input_shapes.push_back(xla::TypeToShape(type));
      }
    
      absl::Status status = loader->RefineDynamicShapes(input_shapes);
      if (!status.ok()) {
        // Do not return false here.
        //
        // RefineDynamicShapes returns ok only when it produces full static shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// statusManager receives updated pod status updates from the podWorker and updates the API
    	// status of those pods to match. The statusManager is authoritative for the synthesized
    	// status of the pod from the kubelet's perspective (other components own the individual
    	// elements of status) and should be consulted by components in preference to assembling
    	// that status themselves. Note that the status manager is downstream of the pod worker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    // its String method returns "<invalid Value>", and all other methods panic.
    // Most functions and methods never return an invalid value.
    // If one does, its documentation states the conditions explicitly.
    //
    // A Value can be used concurrently by multiple goroutines provided that
    // the underlying Go value can be used concurrently for the equivalent
    // direct operations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    tn.us
    tx.us
    ut.us
    vi.us
    vt.us
    va.us
    wa.us
    wi.us
    wv.us
    wy.us
    // The registrar notes several more specific domains available in each state,
    // such as state.*.us, dst.*.us, etc., but resolution of these is somewhat
    // haphazard; in some states these domains resolve as addresses, while in others
    // only subdomains are available, or even nothing at all. We include the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	}
    	pp := gp.m.p.ptr()
    	if pp.m.ptr() != gp.m || pp.status != _Prunning {
    		print("releasep: m=", gp.m, " m->p=", gp.m.p.ptr(), " p->m=", hex(pp.m), " p->status=", pp.status, "\n")
    		throw("releasep: invalid p state")
    	}
    	gp.m.p = 0
    	pp.m = 0
    	pp.status = _Pidle
    	return pp
    }
    
    func incidlelocked(v int32) {
    	lock(&sched.lock)
    	sched.nmidlelocked += v
    	if v > 0 {
    		checkdead()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top