Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,511 for Implementation (1.48 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import com.google.common.base.Objects;
    
    /**
     * This abstract class provide a sensible default implementation for {@code Serializer} equality. This equality
     * implementation is required to enable cache instance reuse within the same Gradle runtime. Serializers are used
     * as cache parameter which need to be compared to determine compatible cache.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedBytes.java

        return LexicographicalComparatorHolder.PureJavaComparator.INSTANCE;
      }
    
      /**
       * Provides a lexicographical comparator implementation; either a Java implementation or a faster
       * implementation based on {@link Unsafe}.
       *
       * <p>Uses reflection to gracefully fall back to the Java implementation if {@code Unsafe} isn't
       * available.
       */
      @VisibleForTesting
      static class LexicographicalComparatorHolder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyModifier.java

         *
         * @return a dependency factory
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         *
         * @see DependencyFactory
         */
        @Inject
        protected abstract DependencyFactory getDependencyFactory();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 22 04:12:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/GeneratePluginDescriptors.java

        public ListProperty<PluginDeclaration> getDeclarations() {
            return declarations;
        }
    
        /**
         * Returns all {@code (id, implementation class)} pairs from {@link #getDeclarations()}.
         * <p>
         * This map is the only input needed from the plugin declarations to create the plugin descriptors.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

        }
    
        @Override
        public boolean hasLocation(Location location) {
            if (hasEmptySourcePaths) {
                // There is currently a requirement in the JDK9 javac implementation
                // that when javac is invoked with an explicitly empty sourcepath
                // (i.e. {@code --sourcepath ""}), it won't allow you to compile a java 9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TopKSelector.java

     *
     * <p>This uses the same efficient implementation as {@link Ordering#leastOf(Iterable, int)},
     * offering expected O(n + k log k) performance (worst case O(n log k)) for n calls to {@link
     * #offer} and a call to {@link #topK}, with O(k) memory. In comparison, quickselect has the same
     * asymptotics but requires O(n) memory, and a {@code PriorityQueue} implementation takes O(n log
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppSharedLibrary.java

            super(names, objectFactory, baseName, sourceFiles, componentHeaderDirs, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/package-info.java

     * the base class for all provider (and property) implementations.</p>
     *
     * <h3>Lazy properties</h3>
     *
     * <p>For the public API, see {@link org.gradle.api.provider.Property Property}.</p>
     *
     * <p>For the base internal implementation, see {@link org.gradle.api.internal.provider.AbstractProperty}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ActionBasedMetadataRuleWrapper.java

            throw new UnsupportedOperationException("This operation is not supported by this implementation");
        }
    
        @Override
        public void addClassRule(SpecConfigurableRule ruleAction) {
            throw new UnsupportedOperationException("This operation is not supported by this implementation");
        }
    
        @Override
        public SpecRuleAction<? super ComponentMetadataDetails> getRule() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        }
    
        public void blankLine() {
            node("");
        }
    
        /**
         * Starts a new node with the given type name.
         */
        public TreeFormatter node(Class<?> type) {
            // Implementation is currently dumb, can be made smarter
            if (type.isInterface()) {
                node("Interface ");
            } else {
                node("Class ");
            }
            appendType(type);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top