Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,052 for Implementation (0.18 sec)

  1. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/src/main/java/org/gradle/sample/plugin/DefaultModel.java

    package org.gradle.sample.plugin;
    
    import java.io.Serializable;
    import java.lang.String;
    import java.util.List;
    import java.util.Arrays;
    
    /**
     * This is the implementation of the custom tooling model. It must be serializable and must have methods and properties that
     * are compatible with the custom tooling model interface. It may or may not implement the custom tooling model interface.
     */
    public class DefaultModel implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 599 bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Implementation classes for the Gradle platform plugin.
     *
     * @see org.gradle.api.plugins.catalog.VersionCatalogPlugin
     */
    @NonNullApi
    package org.gradle.api.plugins.catalog.internal;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 842 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

    public abstract class Actions {
    
        static final Action<?> DO_NOTHING = new NullAction<Object>();
    
        /**
         * Creates an action implementation that simply does nothing.
         *
         * A new action instance is created each time.
         *
         * @return An action object with an empty implementation
         */
        @SuppressWarnings("unchecked")
        public static <T> Action<T> doNothing() {
            return (Action<T>) DO_NOTHING;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmApplicationProjectInitDescriptor.java

                    buildScriptBuilder.plugin(null, applicationConventionPlugin());
                    buildScriptBuilder.dependencies().dependency("implementation", null, BuildInitDependency.of("org.apache.commons:commons-text"));
                    buildScriptBuilder.dependencies().projectDependency("implementation", null, ":utilities");
                } else {
                    buildScriptBuilder.plugin(null, libraryConventionPlugin());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 20:23:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

      }
    
      /**
       * Returns the platform preferred map implementation that preserves insertion order when used only
       * for insertions.
       */
      static <K, V> Map<K, V> preservesInsertionOrderOnPutsMap() {
        return Maps.newLinkedHashMap();
      }
    
      /**
       * Returns the platform preferred set implementation that preserves insertion order when used only
       * for insertions.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 29 18:16:45 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

     * interface in order to add the proper getter methods? What about the concrete feature class which implements
     * that new interface? Does it extend the default implementation class? Is there a way we can avoid
     * Java inheritance?</p>
     *
     * Even though the single implementation of this interface also implements {@link org.gradle.api.component.AdhocComponentWithVariants},
     * we do not want to extend that interface here, as it is slated for removal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

    /**
     * An implementation of a Groovy MetaClass that is instrumented and might need to cancel some optimizations
     * in order to get the instrumentation to work properly.
     */
    public interface InstrumentedMetaClass {
        /**
         * Checks if accessing a property by the specified name would be intercepted by the instrumentation at this
         * specific moment. The implementation may return different values at different times.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/MinimalFileTree.java

    import org.gradle.api.file.FileVisitor;
    import org.gradle.api.internal.file.FileTreeInternal;
    import org.gradle.api.tasks.util.PatternSet;
    
    import java.io.File;
    
    /**
     * A minimal file tree implementation. An implementation can optionally also implement the following interfaces:
     *
     * <ul>
     *  <li>{@link FileSystemMirroringFileTree}</li>
     *  <li>{@link LocalFileTree}</li>
     *  <li>{@link PatternFilterableFileTree}</li>
     * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

        MavenFailOnSeverityLogger(String name, LogLevelRecorder logLevelRecorder) {
            super(name);
            this.logLevelRecorder = logLevelRecorder;
        }
    
        /**
         * A simple implementation which always logs messages of level WARN
         * according to the format outlined above.
         */
        @Override
        public void warn(String msg) {
            super.warn(msg);
            logLevelRecorder.record(Level.WARN);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

            if (!problemId.getGroup().equals(GradleCoreProblemGroup.validation().property())) {
                return false;
            } else {
                List<String> candidates = Arrays.asList("unknown-implementation", "unknown-implementation-nested", "implicit-dependency");
                return candidates.contains(problemId.getName());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top