Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 491 for Here (0.04 sec)

  1. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginGoodBehaviourTest.groovy

    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    
    class JacocoPluginGoodBehaviourTest extends WellBehavedPluginTest {
        // The jacoco plugin does not add tasks to an empty project.
        // We apply the java plugin too here in this test to check that
        // the jacoco plugin behaves well when used together
        // with the java plugin (a typical scenario).
    
        def setup(){
            buildFile << """
                apply plugin:'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

    package org.gradle.internal.logging.console;
    
    public interface Console {
        TextArea getBuildOutputArea();
    
        BuildProgressArea getBuildProgressArea();
    
        // TODO(ew): Consider whether this belongs in BuildProgressArea or here
        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationStatus.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.expiry;
    
    /**
     * Expiration status for daemon expiration check results.  Note that order here is important, higher ordinal statuses take precedent over lower ordinal statuses when aggregating results in {@link
     * AllDaemonExpirationStrategy}.
     */
    public enum DaemonExpirationStatus {
        DO_NOT_EXPIRE,
        QUIET_EXPIRE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    }
    // end::maven-like-repo[]
    
    // tag::maven-like-repo-with-jar-repo[]
    repositories {
        maven {
            // Look for POMs and artifacts, such as JARs, here
            url = uri("http://repo2.mycompany.com/maven2")
            // Look for artifacts here if not found at the above location
            artifactUrls("http://repo.mycompany.com/jars")
            artifactUrls("http://repo.mycompany.com/jars2")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpFacet.java

     *         beforeMerged { wtpFacet -&gt;
     *           //tinker with {@link WtpFacet} here
     *         }
     *
     *         //closure executed after wtp facet file content is loaded from existing file
     *         //and after gradle build information is merged
     *         whenMerged { wtpFacet -&gt;
     *           //you can tinker with the {@link WtpFacet} here
     *         }
     *       }
     *     }
     *   }
     * }
     *
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import org.gradle.util.internal.GUtil;
    
    // Should use stronger modelling for this and make the set of tools open, rather than hard-coding here
    public enum ToolType {
        CPP_COMPILER("C++ compiler"),
        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

        }
    }
    // end::maven-like-repo[]
    
    // tag::maven-like-repo-with-jar-repo[]
    repositories {
        maven {
            // Look for POMs and artifacts, such as JARs, here
            url "http://repo2.mycompany.com/maven2"
            // Look for artifacts here if not found at the above location
            artifactUrls "http://repo.mycompany.com/jars"
            artifactUrls "http://repo.mycompany.com/jars2"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LexerTest.kt

                    "       \"unused\",\n" +
                    "       \"nothing_to_inline\"\n" +
                    ")    ]\n" +
                    "\n" +
                    "/* /* one more weird comment here */ */" +
                    "package com.example\n" +
                    "plugins { }\n", plugins),
                equalTo(
                    Packaged(
                        "com.example",
                        LexedScript(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    //   void MyMethod();
    //   FRIEND_TEST(MyClassTest, MyMethod);
    // };
    //
    // class MyClassTest : public testing::Test {
    //   // ...
    // };
    //
    // TEST_F(MyClassTest, MyMethod) {
    //   // Can call MyClass::MyMethod() here.
    // }
    
    #define FRIEND_TEST(test_case_name, test_name)\
    friend class test_case_name##_##test_name##_Test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/ScheduledWork.java

        public ScheduledWork(List<? extends Node> scheduledNodes, Collection<? extends Node> entryNodes) {
            // Checking that entryNodes are a subset of scheduledNodes can be expensive, so it is omitted from here.
            this.scheduledNodes = ImmutableList.copyOf(scheduledNodes);
            this.entryNodes = ImmutableSet.copyOf(entryNodes);
        }
    
        @Override
        public void visitNodes(BiConsumer<List<Node>, Set<Node>> visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top