Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for bstart (0.12 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	// and where they would like to go.
    	Branches []Branch
    
    	// JumpTables remembers all the jump tables we've seen.
    	JumpTables []*ssa.Block
    
    	// bstart remembers where each block starts (indexed by block ID)
    	bstart []*obj.Prog
    
    	maxarg int64 // largest frame size for arguments to calls made by the function
    
    	// Map from GC safe points to liveness index, generated by
    	// liveness analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K 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 (1)
  3. 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)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type (
    	EraseInfo struct {
    		Start  uint32
    		Length uint32
    	}
    	EraseInfo64 struct {
    		Start  uint64
    		Length uint64
    	}
    	MtdOobBuf struct {
    		Start  uint32
    		Length uint32
    		Ptr    *uint8
    	}
    	MtdOobBuf64 struct {
    		Start  uint64
    		Pad    uint32
    		Length uint32
    		Ptr    uint64
    	}
    	MtdWriteReq struct {
    		Start  uint64
    		Len    uint64
    		Ooblen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "restartPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    			sc.vlogf("http2: too many control frames in send queue, closing connection")
    			return
    		}
    
    		// Start the shutdown timer after sending a GOAWAY. When sending GOAWAY
    		// with no error code (graceful shutdown), don't start the timer until
    		// all open streams have been completed.
    		sentGoAway := sc.inGoAway && !sc.needToSendGoAway && !sc.writingFrame
    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. staging/src/k8s.io/api/core/v1/generated.proto

      repeated ContainerResizePolicy resizePolicy = 23;
    
      // RestartPolicy defines the restart behavior of individual containers in a pod.
      // This field may only be set for init containers, and the only allowed value is "Always".
      // For non-init containers or when this field is not specified,
      // the restart behavior is defined by the Pod's restart policy and the container type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top