Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,505 for Implementation (0.44 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *  </tr>
     *  <tr>
     *      <td>implementation</td>
     *      <td>none (detected)</td>
     *      <td>Yes</td>
     *      <td>The Mojo's fully-qualified class name (or script path in the case of non-Java Mojos).</td>
     *  </tr>
     *  <tr>
     *      <td>language</td>
     *      <td>none (detected)</td>
     *      <td>No. Default: <code>java</code></td>
     *      <td>The implementation language for this Mojo (Java, beanshell, etc.).</td>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/UnknownImplementationSnapshot.java

        public enum UnknownReason {
            UNKNOWN_CLASSLOADER(
                "was loaded with an unknown classloader (class '%s').",
                "Gradle cannot track the implementation for classes loaded with an unknown classloader.",
                "Load your class by using one of Gradle's built-in ways."
            ),
            UNTRACKED_LAMBDA(
                "was implemented by the Java lambda '%s'.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoader.java

    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Loads the tooling API implementation of the Gradle version that will run the build (the "provider").
     * Adapts the rather clunky cross-version interface to the more readable interface of the TAPI client.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

             * <p>
             * What amounts to "significant work" is up to the type of work implementation.
             */
            WorkResult getDidWork();
    
            /**
             * Implementation-specific output of executing the user code.
             */
            @Nullable
            Object getOutput(File workspace);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSet.java

       * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
       * captures their "logical contents" and they are reconstructed using public
       * static factories. This is necessary to ensure that the existence of a
       * particular implementation type is an implementation detail.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderRegistry.java

         */
        ClassLoader getGradleApiClassLoader();
    
        /**
         * Returns the implementation class loader for the Gradle core.
         */
        ClassLoader getRuntimeClassLoader();
    
        /**
         * Returns the implementation class loader for the built-in plugins.
         */
        ClassLoader getPluginsClassLoader();
    
        /**
         * Just the Gradle core API, no core plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java

    import java.util.Set;
    import org.junit.Ignore;
    
    /**
     * Tests {@link java.util.Map#entrySet}.
     *
     * @author Louis Wasserman
     * @param <K> The key type of the map implementation under test.
     * @param <V> The value type of the map implementation under test.
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java

    import java.util.Set;
    import org.junit.Ignore;
    
    /**
     * Tests {@link java.util.Map#entrySet}.
     *
     * @author Louis Wasserman
     * @param <K> The key type of the map implementation under test.
     * @param <V> The value type of the map implementation under test.
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/StandardSystemProperty.java

      JAVA_VM_SPECIFICATION_NAME("java.vm.specification.name"),
    
      /** Java Virtual Machine implementation version. */
      JAVA_VM_VERSION("java.vm.version"),
    
      /** Java Virtual Machine implementation vendor. */
      JAVA_VM_VENDOR("java.vm.vendor"),
    
      /** Java Virtual Machine implementation name. */
      JAVA_VM_NAME("java.vm.name"),
    
      /** Java Runtime Environment specification version. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/internal/services/PlatformJvmServices.java

                    if (globalJvmMetadataDetector instanceof ConditionalInvalidation) {
                        // Avoiding generic-unchecked cast with this intermediate implementation that checks the types of the items:
                        ConditionalInvalidation<JvmInstallationMetadata> checkedInvalidationFromDetector =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top