Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,981 for Super (0.31 sec)

  1. android/guava/src/com/google/common/collect/TreeMultimap.java

      }
    
      TreeMultimap(Comparator<? super K> keyComparator, Comparator<? super V> valueComparator) {
        super(new TreeMap<K, Collection<V>>(keyComparator));
        this.keyComparator = keyComparator;
        this.valueComparator = valueComparator;
      }
    
      private TreeMultimap(
          Comparator<? super K> keyComparator,
          Comparator<? super V> valueComparator,
          Multimap<? extends K, ? extends V> multimap) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
            String message, String a1, String a2, String a3) {
          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(String message, Throwable antecedent) {
          super(message);
          this.antecedent = antecedent;
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 13:46:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3ReaderEx.java

            return super.read(reader, strict);
        }
    
        @Override
        public Model read(Reader reader) throws IOException, XmlPullParserException {
            return super.read(reader);
        }
    
        @Override
        public Model read(InputStream in, boolean strict, InputSource source) throws IOException, XmlPullParserException {
            return super.read(in, strict, source);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/ParamMap.java

            return parent.getOrDefault(toCamelCase(key), defaultValue);
        }
    
        @Override
        public void forEach(final BiConsumer<? super K, ? super V> action) {
            parent.forEach(action);
        }
    
        @Override
        public void replaceAll(final BiFunction<? super K, ? super V, ? extends V> function) {
            parent.replaceAll(function);
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/FilteredKeyListMultimap.java

      FilteredKeyListMultimap(ListMultimap<K, V> unfiltered, Predicate<? super K> keyPredicate) {
        super(unfiltered, keyPredicate);
      }
    
      @Override
      public ListMultimap<K, V> unfiltered() {
        return (ListMultimap<K, V>) super.unfiltered();
      }
    
      @Override
      public List<V> get(@ParametricNullness K key) {
        return (List<V>) super.get(key);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestClassExecutionResult.java

        TestClassExecutionResult assertStdout(Matcher<? super String> matcher);
    
        TestClassExecutionResult assertTestCaseStdout(String testCaseName, Matcher<? super String> matcher);
    
        TestClassExecutionResult assertStderr(Matcher<? super String> matcher);
    
        TestClassExecutionResult assertTestCaseStderr(String testCaseName, Matcher<? super String> matcher);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                private final BiAction<? super MutableModelNode, ? super List<ModelView<?>>> action;
    
                public InputsUsingBuilderAction(ModelReference<Object> subject, DescriptorReference descriptorReference, Iterable<? extends ModelReference<?>> inputs, BiAction<? super MutableModelNode, ? super List<ModelView<?>>> action) {
                    super(subject, descriptorReference);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPom.java

        /**
         * Configures the issue management for the publication represented by this POM.
         *
         * @since 4.8
         */
        void issueManagement(Action<? super MavenPomIssueManagement> action);
    
        /**
         * Configures the CI management for the publication represented by this POM.
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapGroovyView.java

        }
    
        public void create(String name, Closure<? super I> configAction) {
            create(name, new ClosureBackedAction<I>(configAction));
        }
    
        public <S extends I> void create(String name, Class<S> type, Closure<? super S> configAction) {
            create(name, type, new ClosureBackedAction<I>(configAction));
        }
    
        public void named(String name, Closure<? super I> configAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/transport/TransportException.java

        public TransportException() {
        }
        public TransportException( String msg ) {
            super( msg );
        }
        public TransportException( Throwable rootCause ) {
            this.rootCause = rootCause;
        }
        public TransportException( String msg, Throwable rootCause ) {
            super( msg );
            this.rootCause = rootCause;
        }
    
        public Throwable getRootCause() {
            return rootCause;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 958 bytes
    - Viewed (0)
Back to top