Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 209 for assignments (0.35 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                unwrappedPsi !is KtArrayAccessExpression
            ) {
                // Specially handle property assignment because FE1.0 resolves LHS of assignment to just the property, which would then be
                // treated as a property read.
                return resolveCall(parentBinaryExpression)
            }
    
            when (psi) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    			checkCopyLocksReturnStmt(pass, node)
    		}
    	})
    	return nil, nil
    }
    
    // checkCopyLocksAssign checks whether an assignment
    // copies a lock.
    func checkCopyLocksAssign(pass *analysis.Pass, as *ast.AssignStmt) {
    	for i, x := range as.Rhs {
    		if path := lockPathRhs(pass, x); path != nil {
    			pass.ReportRangef(x, "assignment copies lock value to %v: %v", analysisutil.Format(pass.Fset, as.Lhs[i]), path)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                    items:
                      type: string
                    type: array
                  blockSize:
                    description: The block size to use for IP address assignments from
                      this pool. Defaults to 26 for IPv4 and 122 for IPv6.
                    type: integer
                  cidr:
                    description: The pool CIDR.
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        Iterator(const Iterator& other)
            : ParamIteratorInterface<T>(),
              base_(other.base_), value_(other.value_), index_(other.index_),
              step_(other.step_) {}
    
        // No implementation - assignment is unsupported.
        void operator=(const Iterator& other);
    
        const ParamGeneratorInterface<T>* const base_;
        T value_;
        int index_;
        const IncrementT step_;
      };  // class RangeGenerator::Iterator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

         * Such as, there are both inner and outer loop `break`, or a `break` and `continue` for the same loop.
         */
        public val hasMultipleJumpTargets: Boolean,
    
        /**
         * local variable reassignments found in given statements.
         */
        public val variableReassignments: List<VariableReassignment>
    ) {
        /**
         * Represents a default expression (generally, a last given statement if it has a meaningful result type).
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top