Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Sorties (0.64 sec)

  1. build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts

                "BuildBuilderGenerator",
                "PerformanceTest",
                "BuildCommitDistribution",
                "DetermineBaselines",
            ) -> true
    
            // Third parties tasks
    
            // Publish plugin
            task.name == "login" -> true
    
            // Kotlin/JS
            // https://youtrack.jetbrains.com/issue/KT-50881
            task.name in listOf("generateExternals") -> true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 17:29:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    code, even though third parties are not compelled to copy the source
    along with the object code.
    
    4. You may not copy, modify, sublicense, or distribute the Program
    except as expressly provided under this License. Any attempt otherwise
    to copy, modify, sublicense or distribute the Program is void, and will
    automatically terminate your rights under this License. However, parties
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Service to create providers from {@link ValueSource}s.
     *
     * Notifies interested parties when values are obtained from their sources.
     *
     * @since 6.1
     */
    @ServiceScope(Scope.Build.class)
    public interface ValueSourceProviderFactory {
    
        <T, P extends ValueSourceParameters> Provider<T> createProviderOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org/ http://www.eclipse.org. Third Party Content The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use. ASM 4.1 The...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

        final PayloadSerializer receiver = new PayloadSerializer(new WellKnownClassLoaderRegistry(new DefaultPayloadClassLoaderRegistry(new ClassLoaderCache(), new ModelClassLoaderFactory())))
    
        def "can send an object between two parties"() {
            expect:
            def serialized = originator.serialize(source)
            receiver.deserialize(serialized) == source
    
            where:
            source       | _
            null         | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                Try<@org.jetbrains.annotations.Nullable T> obtained = value.getValue();
                if (obtainedFrom != null) {
                    // We are the first thread to see the obtained value. Let's tell the interested parties about it.
                    valueBroadcaster.getSource().valueObtained(obtainedValue(obtained), obtainedFrom);
                }
                return obtained;
            }
    
            @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

       * checked exceptions.
       */
      public class CheckedBarrier extends CyclicBarrier {
        public CheckedBarrier(int parties) {
          super(parties);
        }
    
        @Override
        public int await() {
          try {
            return super.await(2 * LONG_DELAY_MS, MILLISECONDS);
          } catch (TimeoutException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    If any provision of this Agreement is invalid or unenforceable under
    applicable law, it shall not affect the validity or enforceability of
    the remainder of the terms of this Agreement, and without further
    action by the parties hereto, such provision shall be reformed to the
    minimum extent necessary to make such provision valid and enforceable.
    
    If Recipient institutes patent litigation against any entity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Striped.java

     * allowed to be reclaimed if nobody is holding on to them. This is useful, for example, if one
     * wants to create a {@code Striped<Lock>} of many locks, but worries that in most cases only a
     * small portion of these would be in use.
     *
     * <p>Prior to this class, one might be tempted to use {@code Map<K, Lock>}, where {@code K}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

       * checked exceptions.
       */
      public class CheckedBarrier extends CyclicBarrier {
        public CheckedBarrier(int parties) {
          super(parties);
        }
    
        @Override
        public int await() {
          try {
            return super.await(2 * LONG_DELAY_MS, MILLISECONDS);
          } catch (TimeoutException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top