Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 552 for reassignment (0.22 sec)

  1. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/readWriteAccess/Fe10IdeNormalAnalysisSourceModuleReadWriteAccessTestGenerated.java

      }
    
      @Test
      @TestMetadata("assignment.kt")
      public void testAssignment() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/assignment.kt");
      }
    
      @Test
      @TestMetadata("assignmentPlusEq.kt")
      public void testAssignmentPlusEq() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. test/fixedbugs/bug010.go

    }
    
    func main() {
    	f(3, float64(5))
    }
    
    /*
    bug10.go:5: i undefined
    bug10.go:6: illegal conversion of constant to 020({},<_o001>{<i><int32>INT32;<f><float32>FLOAT32;},{})
    bug10.go:7: error in shape across assignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 450 bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/readWriteAccess/FirIdeDependentAnalysisSourceModuleReadWriteAccessTestGenerated.java

      }
    
      @Test
      @TestMetadata("assignment.kt")
      public void testAssignment() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/assignment.kt");
      }
    
      @Test
      @TestMetadata("assignmentPlusEq.kt")
      public void testAssignmentPlusEq() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/stmt.go

    )
    
    func RangeExprType(t *types.Type) *types.Type {
    	if t.IsPtr() && t.Elem().IsArray() {
    		return t.Elem()
    	}
    	return t
    }
    
    func typecheckrangeExpr(n *ir.RangeStmt) {
    }
    
    // type check assignment.
    // if this assignment is the definition of a var on the left side,
    // fill in the var's type.
    func tcAssign(n *ir.AssignStmt) {
    	if base.EnableTrace && base.Flag.LowerT {
    		defer tracePrint("tcAssign", n)(nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSimpleVariableAccess.kt

        public object Read : KaSimpleVariableAccess()
    
        public class Write(
            /**
             * [KtExpression] that represents the new value that should be assigned to this variable. Or null if the assignment is incomplete
             * and misses the new value.
             */
            public val value: KtExpression?,
        ) : KaSimpleVariableAccess()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 705 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    class ValueArray1 {
     public:
      explicit ValueArray1(T1 v1) : v1_(v1) {}
    
      template <typename T>
      operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
    
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ValueArray1& other);
    
      const T1 v1_;
    };
    
    template <typename T1, typename T2>
    class ValueArray2 {
     public:
      ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

    // TopologyProto), `device_assignment_attr` must not be empty also. When
    // `topology_attr` and `device_assignment_attr` are not empty, a general device
    // assignment based on those two attributes are used. Otherwise when
    // `topology_attr` and `device_assignment_attr` are empty, a full mesh device
    // assignment is used instead. A failure will be returned if it is not possible
    // (e.g. invalid devices or invalid parameters).
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. test/fixedbugs/bug143.go

    		_, _ = x, ok;
    	}
    	{
    		x, ok := f()["key"];
    		_, _ = x, ok;
    	}
    	{
    		var x int;
    		var ok bool;
    		x, ok = f()["key"];
    		_, _ = x, ok;
    	}
    }
    
    /*
     * bug143.go:19: assignment count mismatch: 2 = 1
     * bug143.go:18: x: undefined
     * bug143.go:18: ok: undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 647 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ConfigurableFileCollectionExtensionsTest.kt

    import org.hamcrest.CoreMatchers.sameInstance
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class ConfigurableFileCollectionExtensionsTest {
    
        @Test
        fun `assignment to delegated property means #setFrom`() {
    
            val fileCollection = mock<ConfigurableFileCollection>()
            var delegatedProperty by fileCollection
    
            val value = mock<ConfigurableFileCollection>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 733 bytes
    - Viewed (0)
  10. test/fixedbugs/bug075.go

    package main
    
    type T struct { m map[int]int }
    func main() {
    	t := new(T);
    	t.m = make(map[int]int);
    	var x int;
    	var ok bool;
    	x, ok = t.m[0];  //bug075.go:11: bad shape across assignment - cr=1 cl=2
    	_, _ = x, ok;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 385 bytes
    - Viewed (0)
Back to top