Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,538 for complements (0.07 sec)

  1. ci/official/containers/ml_build/builder.devtoolset/glibc2.17-inline.patch

    +++ /dt9/usr/include/x86_64-linux-gnu/sys/cdefs.new.h   2022-11-04 17:17:31.727061220 +0000
    @@ -320,7 +320,7 @@
    
     /* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
        inline semantics, unless -fgnu89-inline is used.  */
    -#if (!defined __cplusplus || __GNUC_PREREQ (4,3)) && defined __GNUC__
    +#if (!defined __cplusplus || __GNUC_PREREQ (4,3) || defined __clang__) && defined __GNUC__
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Sep 24 20:45:58 UTC 2024
    - 663 bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/LinkedListMultimap.java

     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    public class LinkedListMultimap<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMultimap<K, V> implements ListMultimap<K, V>, Serializable {
      /*
       * Order is maintained using a linked list containing all key-value pairs. In
       * addition, a series of disjoint linked lists of "siblings", each containing
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapFeature.java

     * Optional features of classes derived from {@code Multimap}.
     *
     * @author Louis Wasserman
     */
    @SuppressWarnings("rawtypes") // maybe avoidable if we rework the whole package?
    @GwtCompatible
    public enum MultimapFeature implements Feature<Multimap> {
      VALUE_COLLECTIONS_SUPPORT_ITERATOR_REMOVE;
    
      private final Set<Feature<? super Multimap>> implied;
    
      MultimapFeature(Feature<? super Multimap>... implied) {
        this.implied = copyToSet(implied);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ComparatorOrdering.java

    /** An ordering for a pre-existing comparator. */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    final class ComparatorOrdering<T extends @Nullable Object> extends Ordering<T>
        implements Serializable {
      final Comparator<T> comparator;
    
      ComparatorOrdering(Comparator<T> comparator) {
        this.comparator = checkNotNull(comparator);
      }
    
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sun Jun 20 14:22:42 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

     *
     * @deprecated since maven 4.0, this class is now a no-op class and is only here for compatibility
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultReportingConverter implements ReportingConverter {
    
        @Override
        public void convertReporting(Model model, ModelBuildingRequest request, ModelProblemCollector problems) {}
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver.java

     * declaration that has the most transitive steps away from the project being built.
     *
     * @since 3.0
     */
    @Named("farthest")
    @Singleton
    @Deprecated
    public class FarthestConflictResolver implements ConflictResolver {
        // ConflictResolver methods -----------------------------------------------
    
        /*
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/PathTranslatingPostProcessor.java

    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    import org.codehaus.plexus.interpolation.util.ValueSourceUtils;
    
    /**
     *
     */
    @Deprecated
    public class PathTranslatingPostProcessor implements InterpolationPostProcessor {
    
        private final List<String> unprefixedPathKeys;
        private final File projectDir;
        private final PathTranslator pathTranslator;
        private final List<String> expressionPrefixes;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java

    import org.eclipse.aether.artifact.ArtifactType;
    import org.eclipse.aether.artifact.ArtifactTypeRegistry;
    
    import static java.util.Objects.requireNonNull;
    
    class TypeRegistryAdapter implements ArtifactTypeRegistry {
        private final TypeRegistry typeRegistry;
    
        TypeRegistryAdapter(TypeRegistry typeRegistry) {
            this.typeRegistry = requireNonNull(typeRegistry, "typeRegistry");
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

       * element returned.
       *
       * <p>See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6529795">Sun bug 6529795</a>
       */
      static class IteratorWithSunJavaBug6529795<T> implements Iterator<T> {
        Iterator<T> iterator;
        boolean nextThrewException;
    
        IteratorWithSunJavaBug6529795(Iterator<T> iterator) {
          this.iterator = iterator;
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractIdleService.java

    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractIdleService implements Service {
    
      /* Thread names will look like {@code "MyService STARTING"}. */
      private final Supplier<String> threadNameSupplier = new ThreadNameSupplier();
    
      @WeakOuter
      private final class ThreadNameSupplier implements Supplier<String> {
        @Override
        public String get() {
          return serviceName() + " " + state();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top