Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for Pojo (0.03 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/tests/sharingObjectsWithConfigurationCache.out

    > Task :checkEquality
    POJO reference equality: true
    Collection reference equality: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                        });
                        file = getProject().getObjects().property(File.class);
                        file.set(new File("some/dir"));
                        pojo = getProject().getObjects().property(Pojo.class);
                        pojo.set(new Pojo(true));
                    }
    
                    @Input
                    public String getText() {
                        return text.get();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/tests/sharingObjectsWithoutConfigurationCache.out

    > Task :checkEquality
    POJO reference equality: true
    Collection reference equality: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 114 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/groovy/build.gradle

        def objectValue = new StateObject()
        def stringsValue = ["a", "b"] as ArrayList<String>
    
        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
            println("POJO reference equality: ${stateObject === objectValue}") // <2>
            println("Collection reference equality: ${strings === stringsValue}") // <3>
            println("Collection equality: ${strings == stringsValue}") // <4>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 641 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/kotlin/build.gradle.kts

    tasks.register<StatefulTask>("checkEquality") {
        val objectValue = StateObject()
        val stringsValue = arrayListOf("a", "b")
    
        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
            println("POJO reference equality: ${stateObject === objectValue}") // <2>
            println("Collection reference equality: ${strings === stringsValue}") // <3>
            println("Collection equality: ${strings == stringsValue}") // <4>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 657 bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            then:
            inEar "APP-INF/lib/child.jar"
        }
    
        def "supports duplicate dependencies"() {
            given:
            def pojoProject = TestUtil.createChildProject(project, 'pojo')
            pojoProject.pluginManager.apply(JavaPlugin)
            def beanProject = TestUtil.createChildProject(project, 'bean')
            beanProject.pluginManager.apply(JavaPlugin)
    
            beanProject.dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/plugins/Convention.java

     * Convention}, and the properties and methods of the convention object become available as properties and methods of
     * the object which the convention is associated to. A convention object is simply a POJO or POGO. Usually, a {@code
     * Convention} is used by plugins to extend a {@link org.gradle.api.Project} or a {@link org.gradle.api.Task}.</p>
     *
     * @deprecated Use extensions instead. This is scheduled for removal in Gradle 9.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 12 12:01:34 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    The URL verifier plugin emits HTTP GET calls to check if a URL can be resolved successfully.
    The method `DefaultHttpCaller.get(String)` is responsible for calling a given URL and returns an instance of type `HttpResponse`. `HttpResponse` is a POJO containing information about the HTTP response code and message:
    
    .HttpResponse.java
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * <p>This method is similar to {@link java.util.concurrent.CompletableFuture#thenApply} and
       * {@link java.util.concurrent.CompletableFuture#thenApplyAsync}. It can also serve some of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/FluentFuture.java

       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * <p>This method is similar to {@link java.util.concurrent.CompletableFuture#thenApply} and
       * {@link java.util.concurrent.CompletableFuture#thenApplyAsync}. It can also serve some of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top