Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Barbier (0.16 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/PluginResolverFactory.java

         * </ol>
         * <p>
         * This order is optimized for both performance and to allow resolvers earlier in the order
         * to mask plugins which would have been found later in the order.
         */
        private void addDefaultResolvers(PluginArtifactRepositories pluginResolveContext, List<PluginResolver> resolvers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

                if (!detector.found) {
                    return bytes;
                }
    
                if (findLoadedClass(detector.interfaceName) == null) {
                    // TODO:ADAM - need to do this earlier
                    ClassWriter emptyWriter = new ClassWriter(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java

    /**
     * Provides backwards compatibility with Maven 3.2.3 and earlier. Clients that do not require compatibility with Maven
     * 3.2.3 and earlier are encouraged to use {@link JavaToolchainImpl}.
     * <strong>Note:</strong> This is an internal component whose interface can change without prior notice.
     *
     * @deprecated clients that do not require compatibility with Maven 3.2.3 and earlier should link to
     *             {@link JavaToolchainImpl} instead.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 19:46:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         * However, not all Zip readers support the Zip64 extensions.
         * Notably, the {@link java.util.zip.ZipInputStream} JDK class does not support Zip64 for versions earlier than Java 7.
         * This means you should not enable this property if you are building JARs to be used with Java 6 and earlier runtimes.
         */
        @Input
        public boolean isZip64() {
            return allowZip64;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

        /**
         * Adds tests to be executed declared by the container task and the class name.
         *
         * <p>Note: These tests are ignored for target Gradle version earlier than 6.1</p>
         *
         * @param task The path of the target task.
         * @param testClasses The class names of the tests to be executed.
         * @return this
         * @since 6.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         * Interface precedence is breadth-first, declaration.
         *
         * The order of the methods follows the same precedence.
         * That is, the “nearer” declarations are earlier in the list.
         */
        Collection<Method> getGetters();
    
        /**
         * Similar to {@link #getGetters()}, but varies based on the param type instead of return type.
         *
         * Has identical ordering semantics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * Returns the node at the given path at the desired state or later, if it exists.
         * <p>
         * If there is no known node at that path, an {@link IllegalStateException} is thrown.
         * <p>
         * If the node is at an earlier state than desired it will be irrevocably transitioned to the desired state and returned.
         * If it is at the desired state or later it is returned.
         *
         * @param path the path for the node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/eventbus/DispatcherTest.java

        dispatcher = Dispatcher.legacyAsync();
    
        final CyclicBarrier barrier = new CyclicBarrier(2);
        final CountDownLatch latch = new CountDownLatch(2);
    
        new Thread(
                new Runnable() {
                  @Override
                  public void run() {
                    try {
                      barrier.await();
                    } catch (Exception e) {
                      throw new AssertionError(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 27 15:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        if (seenExceptionsLocal == null) {
          // TODO(cpovirk): Should we use a simpler (presumably cheaper) data structure?
          /*
           * Using weak references here could let us release exceptions earlier, but:
           *
           * 1. On Android, querying a WeakReference blocks if the GC is doing an otherwise-concurrent
           * pass.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/TargetJVMVersionOnLibraryTooNewFailureDescriber.java

        }
    
        private String suggestChangeLibraryVersion(String requestedName, JavaVersion minRequiredJVMVersion) {
            return "Change the dependency on '" + requestedName + "' to an earlier version that supports JVM runtime version " + minRequiredJVMVersion.getMajorVersion() + ".";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:37:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top