Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 677 for assignments (0.14 sec)

  1. src/text/template/exec.go

    }
    
    // pop pops the variable stack up to the mark.
    func (s *state) pop(mark int) {
    	s.vars = s.vars[0:mark]
    }
    
    // setVar overwrites the last declared variable with the given name.
    // Used by variable assignments.
    func (s *state) setVar(name string, value reflect.Value) {
    	for i := s.mark() - 1; i >= 0; i-- {
    		if s.vars[i].name == name {
    			s.vars[i].value = value
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-28759`](https://youtrack.jetbrains.com/issue/KT-28759) No not-null smartcast from direct assignment if it's split into declaration and value assignment
    - [`KT-28760`](https://youtrack.jetbrains.com/issue/KT-28760) No not-null smartcast from direct assignment of `this`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/expand_calls.go

    	return mem
    }
    
    // decomposeAsNecessary converts a value (perhaps an aggregate) passed to a call or returned by a function,
    // into the appropriate sequence of stores and register assignments to transmit that value in a given ABI, and
    // returns the current memory after this convert/rewrite (it may be the input memory, perhaps stores were needed.)
    // 'pos' is the source position all this is tied to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/assignment.kt

    Anna Kozlova <******@****.***> 1709677574 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 72 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/assignment.txt

    Anna Kozlova <******@****.***> 1709677574 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 40 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    		// which turns an expression into an assignment. Provide
    		// a more explicit error message in that case to prevent
    		// further confusion.
    		var str string
    		if as, ok := s.(*AssignStmt); ok && as.Op == 0 {
    			// Emphasize complex Lhs and Rhs of assignment with parentheses to highlight '='.
    			str = "assignment " + emphasize(as.Lhs) + " = " + emphasize(as.Rhs)
    		} else {
    			str = String(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    		for _, v := range vars {
    			base.WarnfAt(v.Pos(), "stack object %v %v", v, v.Type())
    		}
    	}
    
    	return x
    }
    
    // isfat reports whether a variable of type t needs multiple assignments to initialize.
    // For example:
    //
    //	type T struct { x, y int }
    //	x := T{x: 0, y: 1}
    //
    // Then we need:
    //
    //	var t T
    //	t.x = 0
    //	t.y = 1
    //
    // to fully initialize t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def TFDeviceAssignmentByFuncAttrPass : Pass<"tf-device-assignment-by-func-attr", "mlir::func::FuncOp"> {
      let summary = "Device assignment in TF dialect using the device specified in the function attribute.";
      let constructor = "TF::CreateTFDeviceAssignmentByFuncAttrPass()";
    }
    
    def LayoutAssignmentPass : Pass<"tf-layout-assignment", "mlir::func::FuncOp"> {
      let summary = "Layout assignment pass.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      return
    }
    ```
    ### `-tf-device-assignment-by-func-attr`
    
    _Device assignment in TF dialect using the device specified in the function attribute._
    
    ### `-tf-device-cluster-formation`
    
    _Form clusters from instructions assigned to same device_
    
    Clusters operations with the same device assignment id. For each
    cluster, creates a "tf_device.device_launch" op with a Region containing the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * queried.</p>
         *
         * <p>The order of the files in a {@code FileTree} is not stable, even on a single computer.
         *
         * @param args map of property assignments to {@code ConfigurableFileTree} object
         * @return the configured file tree. Never returns null.
         */
        ConfigurableFileTree fileTree(Map<String, ?> args);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top