Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 199 for assignments (0.21 sec)

  1. src/runtime/syscall_windows.go

    		//
    		// TODO(mknyszek): Remove this when we no longer have
    		// caller reserved spill space.
    		p.dstSpill = alignUp(p.dstSpill, uintptr(t.Align_))
    		p.dstSpill += t.Size_
    	} else {
    		// Register assignment failed.
    		// Undo the work and stack assign.
    		p.parts = oldParts
    
    		// The Go ABI aligns arguments.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

        return failure();
      }
    
      Attribute activation_quantization_axis = rewriter.getI64IntegerAttr(-1);
      Attribute output_quantization_axis = rewriter.getI64IntegerAttr(-1);
      // TODO(b/296916785): Revisit axis assignment logic.
      if (enable_per_channel_quantization) {
        activation_quantization_axis =
            GetQuantizationAxis(rewriter, op, /*operand_index=*/0);
    
        auto output_scale_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                addAndConfigure("incorrect signature", 1) {
                    number = 123
                    number = f(illegalPropertyUsage) // for now, it is reported as a single error; do we want it to be an assignment of an erroneous value?
                }
                unknown("test2")
                complexValueOne = "type mismatch"
                noSuchFunction(two("three"))
                nested {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/spec/range_int.go

    	}
    	for j = range 1.1 /* ERROR "cannot range over 1.1 (untyped float constant)" */ {
    	}
    	for j = range 10.0 /* ERROR "cannot range over 10.0 (untyped float constant 10)" */ {
    	}
    
    	// There shouldn't be assignment errors if there are more iteration variables than permitted.
    	var i int
    	_ = i
    	for i, j /* ERROR "range over 10 (untyped int constant) permits only one iteration variable" */ = range 10 {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/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.ElemList) < len(fields) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top