Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for anotherValue (0.16 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildScriptClasspathIntegrationTest.java

                    "    println anotherValue",
                    "    new ImportedClass()",
                    "    new OnDemandImportedClass()",
                    "  }",
                    "}",
                    "ext.a = new ImportedClass()",
                    "ext.b = OnDemandImportedClass",
                    "ext.c = someValue",
                    "ext.d = anotherValue",
                    "class TestClass extends ImportedClass { }",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

                assertEquals(topLevelReceiver, functionReceiver.resolvedTo)
            }
        }
    
        @Test
        fun `replaces receiver in chained calls`() {
            with(resolution("configuring { addingValue(value().anotherValue()) }")) {
                val result = replaceInnerReceiverWithTopLevel(additions.single().dataObject)
                val singleArg = (result as ObjectOrigin.NewObjectFromMemberFunction).parameterBindings.bindingMap.values.single()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        @SuppressWarnings("deprecation")
        Boolean anotherTrue = new Boolean(true);
        @SuppressWarnings("deprecation")
        Boolean anotherFalse = new Boolean(false);
        list.set(0, anotherTrue);
        assertThat(list.get(0)).isSameInstanceAs(true);
        list.set(1, anotherFalse);
        assertThat(list.get(1)).isSameInstanceAs(false);
      }
    
      public void testCountTrue() {
        assertThat(Booleans.countTrue()).isEqualTo(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/BooleansTest.java

        @SuppressWarnings("deprecation")
        Boolean anotherTrue = new Boolean(true);
        @SuppressWarnings("deprecation")
        Boolean anotherFalse = new Boolean(false);
        list.set(0, anotherTrue);
        assertThat(list.get(0)).isSameInstanceAs(true);
        list.set(1, anotherFalse);
        assertThat(list.get(1)).isSameInstanceAs(false);
      }
    
      public void testCountTrue() {
        assertThat(Booleans.countTrue()).isEqualTo(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top