Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for startm (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[RESULT:.*]] = "mhlo.dynamic_slice"
      // CHECK-DAG-SAME: (%arg0, %[[START1]], %[[START2]])
      // CHECK-DAG-SAME: {slice_sizes = dense<[1, 4]> : tensor<2xi64>} :
      // CHECK-DAG-SAME: (tensor<?x4xi32>, tensor<i64>, tensor<i64>) -> tensor<1x4xi32>
      // CHECK: return %[[RESULT]] : tensor<1x4xi32>
      %starts = "tf.Const"() {value = dense<[1, 0]> : tensor<2xi64>} : () -> (tensor<2xi64>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

     o_=M(),_l=class extends o_{prefixed(e,t){return t+e.replace("-inline","")}normalize(e){return e.replace(/(margin|padding|border)-(start|end)/,"$1-inline-$2")}};_l.names=["border-inline-start","border-inline-end","margin-inline-start","margin-inline-end","padding-inline-start","padding-inline-end","border-start","border-end","margin-start","margin-end","padding-start","padding-end"];Fy.exports=_l});var $y=v((iI,Ny)=>{l();var l_=M(),Ol=class extends l_{check(e){return!e.value.includes("flex-")&&e...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// precedes the time a pod was started, only logs since the pod start will be returned.
    	// If this value is in the future, no logs will be returned.
    	// Only one of sinceSeconds or sinceTime may be specified.
    	SinceSeconds *int64
    	// An RFC3339 timestamp from which to show logs. If this value
    	// precedes the time a pod was started, only logs since the pod start will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    }
    func (s *state) constNil(t *types.Type) *ssa.Value { return s.f.ConstNil(t) }
    func (s *state) constEmptyString(t *types.Type) *ssa.Value {
    	return s.f.ConstEmptyString(t)
    }
    func (s *state) constBool(c bool) *ssa.Value {
    	return s.f.ConstBool(types.Types[types.TBOOL], c)
    }
    func (s *state) constInt8(t *types.Type, c int8) *ssa.Value {
    	return s.f.ConstInt8(t, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"started":            "Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Returns a 1-d i64 elements attribute populated with numbers from start to
    // end, excluding.
    static DenseIntElementsAttr GetI64ElementsAttrForSeq(int start, int end,
                                                         Builder *builder) {
      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// Cannot be updated.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// State holds details about the container's current condition.
    	// +optional
    	State ContainerState `json:"state,omitempty" protobuf:"bytes,2,opt,name=state"`
    	// LastTerminationState holds the last termination state of the container to
    	// help debug container crashes and restarts. This field is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // ClaimResourceStatus can be in any of following states:
      // 	- ControllerResizeInProgress:
      // 		State set when resize controller starts resizing the volume in control-plane.
      // 	- ControllerResizeFailed:
      // 		State set when resize has failed in resize controller with a terminal error.
      // 	- NodeResizePending:
      // 		State set when resize controller has finished resizing the volume but further resizing of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	}
    	return nil
    }
    
    func (sc *http2serverConn) closeStream(st *http2stream, err error) {
    	sc.serveG.check()
    	if st.state == http2stateIdle || st.state == http2stateClosed {
    		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
    	}
    	st.state = http2stateClosed
    	if st.readDeadline != nil {
    		st.readDeadline.Stop()
    	}
    	if st.writeDeadline != nil {
    		st.writeDeadline.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top