Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                    }
                                }
                                properties.set(mapOf(
                                    "myProp" to "myValue",
                                    "prop.with.dots" to "anotherValue"
                                ))
                                withXml {
                                    val dependency = asNode().appendNode("dependencies").appendNode("dependency")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                    }
                                }
                                properties = [
                                    myProp: "myValue",
                                    "prop.with.dots": "anotherValue"
                                ]
                                withXml {
                                    def dependency = asNode().appendNode('dependencies').appendNode('dependency')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K 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