Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for thinsp (0.08 sec)

  1. maven-model/src/test/java/org/apache/maven/model/ParentTest.java

            assertFalse(new Parent().equals(null));
    
            new Parent().equals(new Parent());
        }
    
        @Test
        void testEqualsIdentity() {
            Parent thing = new Parent();
            assertTrue(thing.equals(thing));
        }
    
        @Test
        void testToStringNullSafe() {
            assertNotNull(new Parent().toString());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. maven-model/src/test/java/org/apache/maven/model/RepositoryPolicyTest.java

            new RepositoryPolicy().equals(new RepositoryPolicy());
        }
    
        @Test
        void testEqualsIdentity() {
            RepositoryPolicy thing = new RepositoryPolicy();
            assertTrue(thing.equals(thing));
        }
    
        @Test
        void testToStringNullSafe() {
            assertNotNull(new RepositoryPolicy().toString());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-model/src/test/java/org/apache/maven/model/RepositoryTest.java

            assertFalse(new Repository().equals(null));
    
            new Repository().equals(new Repository());
        }
    
        @Test
        void testEqualsIdentity() {
            Repository thing = new Repository();
            assertTrue(thing.equals(thing));
        }
    
        @Test
        void testToStringNullSafe() {
            assertNotNull(new Repository().toString());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/NamespaceBuilderTest.groovy

            ""      | ""
            "thing" | "thing"
            "a123"  | "a123"
            "_"     | "_"
            "a.b.c" | "a_b_c"
        }
    
        def "discards invalid identifier characters"() {
            expect:
            NamespaceBuilder.toNamespace(value) == namespace
    
            where:
            value      | namespace
            "123"      | ""
            "1thing"   | "thing"
            "1a 2b 3c" | "a_b_c"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                        prop.get()
                    }
                }
    
                tasks.register('thing', SomeTask)
            """
    
            when:
            fails("thing")
    
            then:
            failure.assertHasDescription("Execution failed for task ':thing'.")
            failure.assertHasCause("Cannot query the value of task ':thing' property 'prop' because it has no value available.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractGroupedProjectConfigureLoggingFunctionalTest.groovy

                // Some nested build operations
                allprojects {
                    println "configure \$path"
                }
                tasks.register("thing") {
                    println "create \$path"
                }
                tasks.thing.description = "does something"
            """
            file("a/build.gradle") << """
                println "project a"
            """
            file("b/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    [NOTE]
    ====
    At this stage, Gradle will _only_ make more builds fail.
    It will **not** automatically fix the problem for you, but it helps you realize that you have a problem.
    It is recommended to write such rules in _plugins_ which are then applied to your builds.
    Then, users _have to_ express their preferences, if possible, or fix the problem of having incompatible things on the classpath, as explained in the following section.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
     * This file was generated by the Gradle 'init' task.
     */
    
    // Call method
    things["element1"].thing(12, things.nested["element2"])
    
    // Set property
    prop = things.nested["element2"]
    
    other = extendsFrom(things.nested["element2"].outputDir)
    """)
        }
    
        def "can add further configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/plugins/IvyPublishPluginTest.groovy

                }
            }
    
            then:
            def transformer = new XmlTransformer()
            transformer.addAction(publication.descriptor.xmlAction)
            transformer.transform("<things/>").contains('things foo="bar"')
        }
    
        def "creates publish tasks for all publications in a repository"() {
            when:
            publishing.publications.create("test", IvyPublication)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. maven-model/src/test/java/org/apache/maven/model/MailingListTest.java

            assertFalse(new MailingList().equals(null));
    
            new MailingList().equals(new MailingList());
        }
    
        @Test
        void testEqualsIdentity() {
            MailingList thing = new MailingList();
            assertTrue(thing.equals(thing));
        }
    
        @Test
        void testToStringNullSafe() {
            assertNotNull(new MailingList().toString());
        }
    
        public void testToStringNotNonsense() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top