Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,281 for terminator (0.2 sec)

  1. src/syscall/syscall_bsd.go

    		// Some BSDs include the trailing NUL in the length, whereas
    		// others do not. Work around this by subtracting the leading
    		// family and len. The path is then scanned to see if a NUL
    		// terminator still exists within the length.
    		n := int(pp.Len) - 2 // subtract leading Family, Len
    		for i := 0; i < n; i++ {
    			if pp.Path[i] == 0 {
    				// found early NUL; assume Len included the NUL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Ascii.java

       * Such a sequence is referred to as "text." STX may be used to terminate a sequence of characters
       * started by SOH.
       *
       * @since 8.0
       */
      public static final byte STX = 2;
    
      /**
       * End of Text: A communication control character used to terminate a sequence of characters
       * started with STX and transmitted as an entity.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    	}
    
    	// Type
    	putattr(ctxt, info, abbrev, DW_FORM_ref_addr, DW_CLS_REFERENCE, 0, v.Type) // DW_AT_type
    
    	// Var has no children => no terminator
    }
    
    func putvar(ctxt Context, s *FnState, v *Var, absfn Sym, fnabbrev, inlIndex int, encbuf []byte) {
    	// The contents of this functions are used to generate putvarAbbrev automatically, see TestPutVarAbbrevGenerator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    		// Some BSDs include the trailing NUL in the length, whereas
    		// others do not. Work around this by subtracting the leading
    		// family and len. The path is then scanned to see if a NUL
    		// terminator still exists within the length.
    		n := int(pp.Len) - 2 // subtract leading Family, Len
    		for i := 0; i < n; i++ {
    			if pp.Path[i] == 0 {
    				// found early NUL; assume Len included the NUL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %1 = "tf.VarHandleOp"() {container = "", shape = #tf_type.shape<>, shared_name = "x"} : () -> !tf_res
    
      "tf.opA"() ({
        "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
        "tf.terminator"() : () -> ()
      }) { _xla_compile_device_type = "TPU", _replication_info = "foo" } : () -> ()
      "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/encoding/gob/debug.go

    	wire, ok := deb.wireType[id]
    	if !ok {
    		errorf("type id %d not defined", id)
    	}
    	strct := wire.StructT
    	fieldNum := -1
    	indent++
    	for {
    		delta := deb.uint64()
    		if delta == 0 { // struct terminator is zero delta fieldnum
    			break
    		}
    		fieldNum += int(delta)
    		if fieldNum < 0 || fieldNum >= len(strct.Field) {
    			deb.dump("field number out of range: prevField=%d delta=%d", fieldNum-int(delta), delta)
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    	state.fieldnum = -1
    	for state.b.Len() > 0 {
    		delta := int(state.decodeUint())
    		if delta < 0 {
    			errorf("decode: corrupted data: negative delta")
    		}
    		if delta == 0 { // struct terminator is zero delta fieldnum
    			break
    		}
    		if state.fieldnum >= len(engine.instr)-delta { // subtract to compare without overflow
    			error_(errRange)
    		}
    		fieldnum := state.fieldnum + delta
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto new_result_types = llvm::to_vector<4>(op_->getResultTypes());
      int result_region = isa<TF::WhileRegionOp>(op_) ? 1 : 0;
      Operation* terminator = op_->getRegion(result_region).front().getTerminator();
      auto extra_result_types =
          terminator->getOperands().drop_front(op_->getNumResults()).getTypes();
      new_result_types.insert(new_result_types.end(), extra_result_types.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    then_branch: A region that computes the outputs of the op if cond = true.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the else_branch
    else_branch: A region that computes the outputs of the op if cond = false.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the then_branch
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       * Such a sequence is referred to as "text." STX may be used to terminate a sequence of characters
       * started by SOH.
       *
       * @since 8.0
       */
      public static final byte STX = 2;
    
      /**
       * End of Text: A communication control character used to terminate a sequence of characters
       * started with STX and transmitted as an entity.
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
Back to top