Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 268 for Assignment (0.19 sec)

  1. src/go/types/expr.go

    					fld := fields[i]
    					if !fld.Exported() && fld.pkg != check.pkg {
    						check.errorf(x,
    							UnexportedLitField,
    							"implicit assignment to unexported field %s in struct literal of type %s", fld.name, base)
    						continue
    					}
    					etyp := fld.typ
    					check.assignment(x, etyp, "struct literal")
    				}
    				if len(e.Elts) < len(fields) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	seen := map[types.Object]struct{}{}
    	ast.Inspect(node, func(n ast.Node) bool {
    		if n == nil {
    			return false
    		}
    		// Prevent circular definitions. If 'pos' is within an assignment statement, do not
    		// allow any identifiers in that assignment statement to be selected. Otherwise,
    		// we could do the following, where 'x' satisfies the type of 'f0':
    		//
    		// x := fakeStruct{f0: x}
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/runtime/map_test.go

    	}
    }
    
    // Maps aren't actually copied on assignment.
    func TestAlias(t *testing.T) {
    	m := make(map[int]int, 0)
    	m[0] = 5
    	n := m
    	n[0] = 6
    	if m[0] != 6 {
    		t.Error("alias didn't work")
    	}
    }
    
    func TestGrowWithNaN(t *testing.T) {
    	m := make(map[float64]int, 4)
    	nan := math.NaN()
    
    	// Use both assignment and assignment operations as they may
    	// behave differently.
    	m[nan] = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignments">Assignments</h3>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
    a map index expression, or (for <code>=</code> assignments only) the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveCallTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/resolver/singleByPsi/operators/assignment"), Pattern.compile("^(.+)\\.kts$"), null, true);
          }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveReferenceTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/resolver/singleByPsi/operators/assignment"), Pattern.compile("^(.+)\\.kts$"), null, true);
          }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Kotlin lazy property assignment
    ====
    include::sample[dir="snippets/kotlinDsl/assignment/kotlin",files="build.gradle.kts[tags=assignment]"]
    ====
    <1> Set value with the `.set()` method
    <2> Set value with lazy property assignment using the `=` operator
    <3> The `=` operator can be used also for assigning lazy values
    
    === IDE support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

      options.graph = &graph;
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      // std::unordered_map<string, string> assigned_device_names;
      // for (Node* n : s.graph()->nodes()) {
      //   assigned_device_names[n->name()] = n->assigned_device_name();
      // }
      GraphConstructorOptions opts;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveCandidatesTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/resolver/singleByPsi/operators/assignment"), Pattern.compile("^(.+)\\.kts$"), null, true);
          }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top