Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for assignOps (0.26 sec)

  1. src/cmd/link/internal/ld/data.go

    				sect.Align = align
    			}
    		}
    	}
    	state.datsize = Rnd(state.datsize, int64(sect.Align))
    	sect.Vaddr = uint64(state.datsize)
    	return sect
    }
    
    // assignDsymsToSection assigns a collection of data symbols to a
    // newly created section. "sect" is the section into which to place
    // the symbols, "syms" holds the list of symbols to assign,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/reflect/value.go

    	}
    
    	t := (*mapType)(unsafe.Pointer(iter.m.typ()))
    	ktype := t.Key
    	return copyVal(ktype, iter.m.flag.ro()|flag(ktype.Kind()), iterkey)
    }
    
    // SetIterKey assigns to v the key of iter's current map entry.
    // It is equivalent to v.Set(iter.Key()), but it avoids allocating a new Value.
    // As in Go, the key must be assignable to v's type and
    // must not be derived from an unexported field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    }
    
    func (n Null[T]) Value() (driver.Value, error) {
    	if !n.Valid {
    		return nil, nil
    	}
    	return n.V, nil
    }
    
    // Scanner is an interface used by [Rows.Scan].
    type Scanner interface {
    	// Scan assigns a value from a database driver.
    	//
    	// The src value will be of one of the following types:
    	//
    	//    int64
    	//    float64
    	//    bool
    	//    []byte
    	//    string
    	//    time.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    and at least one of the non-<a href="#Blank_identifier">blank</a> variables is new.
    As a consequence, redeclaration can only appear in a multi-variable short declaration.
    Redeclaration does not introduce a new variable; it just assigns a new value to the original.
    </p>
    
    <pre>
    field1, offset := nextField(str, 0)
    field2, offset := nextField(str, offset)  // redeclares offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let options = [
        Option<"default_device_", "default-device", "std::string", /*default=*/"\"cpu\"",
               "The default device to assign.">
      ];
      let description = [{
        Assigns the default device to all ops that have an empty (or
        nonexistent) device attribute.
    
        For example, if we have the code
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs TFL_ResourceTensor:$resource_handle);
    
      let hasOptions = 1;
    }
    
    def TFL_AssignVariableOp : TFL_Op<"assign_variable", []> {
      let summary = "Assigns a new value to a variable.";
    
      let description = [{
    Any ReadVariableOp with a control dependency on this op is guaranteed to return
    this value or a subsequent newer value of the variable.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    				// Check for 16 or 32B crossing of this prefixed insn.
    				// These do no require padding, but do require increasing
    				// the function alignment to prevent them from potentially
    				// crossing a 64B boundary when the linker assigns the final
    				// PC.
    				switch p.Pc & 31 {
    				case 28: // 32B crossing
    					falign = 64
    				case 12: // 16B crossing
    					if falign < 64 {
    						falign = 32
    					}
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top