Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,639 for Sall (0.03 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        fun WriteContext.encodeLoop(coroutineContext: CoroutineContext) {
            do {
                val call = encodeCall!!
                suspend {
                    codec.run {
                        encode(call.value)
                    }
                }.startCoroutine(
                    Continuation(coroutineContext) {
                        when (val k = call.k) {
                            null -> {
                                encodeCall = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_prod.h

    //  private:
    //   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)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/InitialPassStatementTransformer.java

            if (failMessage != null) {
                addSyntaxError(failMessage, sourceUnit, statement);
            }
    
            return statement;
        }
    
        // Add the block line-number as an argument to call `plugins(int lineNumber, Closure pluginsBlock)`
        private void addLineNumberToMethodCall(ScriptBlock scriptBlock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     * by subclasses as they define our entry point behaviour, but they are protected to enable
     * testing as it's difficult to test something that will call System.exit().
     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    If more than one init script is found, they will all be executed in the order specified above.
    
    Scripts in a given directory are executed in alphabetical order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

            mv.visitCode();
            mv.visitTypeInsn(NEW, "java/lang/UnsupportedOperationException");
            mv.visitInsn(DUP);
            mv.visitLdcInsn(
                "You tried to call a method on an API class. Is the API jar on the classpath instead of the runtime jar?");
            mv.visitMethodInsn(
                INVOKESPECIAL, "java/lang/UnsupportedOperationException", "<init>", "(Ljava/lang/String;)V", false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/TestInterceptorsSubstitution.groovy

        abstract void setCurrentInterceptorSet(T newInterceptorSet);
    
        /**
         * Ensures that the global call interceptors are replaced with an implementation that maintains call interceptors per thread.
         * Then sets up the call interceptors for the current thread only.
         */
        void setupForCurrentThread() {
            synchronized (CallInterceptorRegistry.class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ConventionAwareHelperTest.java

                public Object call() throws Exception {
                    return toList("a");
                }
            };
    
            conventionAware.map("list1", callable);
            assertThat(conventionAware.getConventionValue(null, "list1", false), equalTo((Object) toList("a")));
        }
    
        @Test
        public void canSetMappingUsingDynamicProperty() {
            TestUtil.call("{ it.list1 = { ['a'] } }", conventionAware);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy

            cl.delegate = builder
            cl.call()
            def firstChild = parent.getFirstChild()
            builder.elements.each { element ->
                parent.insertBefore(element, firstChild)
            }
        }
    
        public static void addBefore(Node sibling, Closure cl) {
            DomBuilder builder = new DomBuilder(sibling.ownerDocument, null)
            cl.delegate = builder
            cl.call()
            def parent = sibling.parentNode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 15:32:19 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationsProvider.java

        /**
         * Returns the number of configurations in this provider.
         * <p>
         * This method is provided for performance reasons. It should be more efficient to call this method
         * than to call {@link #visitAll(Consumer)} and then call {@link Set#size()} on the result.
         *
         * @return the number of configurations in this provider, the same count as would be visited by calling {@link #visitAll(Consumer)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top