Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for setItems (0.61 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                        return enabled;
                    }
                }
            """
    
            expect:
            assertValidationSucceeds()
        }
    
    
        def "reports setters for property of mutable type #testedType"() {
            file("input.txt").text = "input"
    
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.tasks.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/main/resources/header.html

                                  document.body.classList.toggle('dark-mode');
                                  if (document.body.classList.contains('dark-mode')) {
                                    localStorage.setItem('theme', 'dark-mode');
                                  } else {
                                    localStorage.removeItem('theme');
                                  }
                                };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          // reset for next iteration
          numSuccessfulSetCalls.set(0);
          finalResults.clear();
        }
        executor.shutdown();
      }
    
      // setFuture and cancel() interact in more complicated ways than the other setters.
      public void testSetFutureCancelBash() {
        if (isWindows()) {
          return; // TODO: b/136041958 - Running very slowly on Windows CI.
        }
        final int size = 50;
        final CyclicBarrier barrier =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          // reset for next iteration
          numSuccessfulSetCalls.set(0);
          finalResults.clear();
        }
        executor.shutdown();
      }
    
      // setFuture and cancel() interact in more complicated ways than the other setters.
      public void testSetFutureCancelBash() {
        if (isWindows()) {
          return; // TODO: b/136041958 - Running very slowly on Windows CI.
        }
        final int size = 50;
        final CyclicBarrier barrier =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            def sideEffect = Mock(ValueSupplier.SideEffect)
            def providerWithSideEffect = Providers.of(someValue()).withSideEffect(sideEffect)
            // `PropertyInternal` does not directly provide these setters,
            // but all user-facing interfaces and their implementations do.
            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <ul>
     *
     * <li>The {@code Task} object itself. This includes any property getters and setters declared by the {@code Task}
     * implementation class.  The properties of this scope are readable or writable based on the presence of the
     * corresponding getter and setter methods.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  7. src/math/big/float.go

    // be rounded to fit into the mantissa bits, and accuracy describes the
    // rounding error with respect to the exact result.
    //
    // Unless specified otherwise, all operations (including setters) that
    // specify a *Float variable for the result (usually via the receiver
    // with the exception of [Float.MantExp]), round the numeric result according
    // to the precision and rounding mode of the result variable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * your build file, or by calling the project's {@link #property(String)} method. The scopes are:</p>
     *
     * <ul>
     *
     * <li>The <code>Project</code> object itself. This scope includes any property getters and setters declared by the
     * <code>Project</code> implementation class.  For example, {@link #getRootProject()} is accessible as the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-64937`](https://youtrack.jetbrains.com/issue/KT-64937) SLC: internal setters are not mangled
    - [`KT-63949`](https://youtrack.jetbrains.com/issue/KT-63949) K2 IDE. Analyze hang on `@Autowired` constructor analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top