Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for primary (0.17 sec)

  1. guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/PingResponse.java

        private static final String ACTIVE_SHARDS_PERCENT_AS_NUMBER = "active_shards_percent_as_number";
        private static final String ACTIVE_PRIMARY_SHARDS = "active_primary_shards";
        private static final String ACTIVE_SHARDS = "active_shards";
        private static final String RELOCATING_SHARDS = "relocating_shards";
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

        // relative to headerStart
        private static final int NTT_PRIMARY_SETUP_OFFSET       = 69;
        private static final int NTT_SECONDARY_PARAMETER_OFFSET  = 51;
    
        static final int NT_TRANSACT_QUERY_SECURITY_DESC = 6;
    
        int function;
    
        SmbComNtTransaction() {
            super();
            primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET;
            secondaryParameterOffset = NTT_SECONDARY_PARAMETER_OFFSET;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ListenableFuture<Integer> derived =
            catchingAsync(primary, Throwable.class, fallback, directExecutor());
        derived.cancel(true);
        assertTrue(primary.isCancelled());
        assertTrue(primary.wasInterrupted());
      }
    
      public void testCatchingAsync_resultCancelledBeforeFallback() throws Exception {
        SettableFuture<Integer> primary = SettableFuture.create();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

            super.reset();
            this.isPrimary = this.hasMore = true;
        }
    
    
        protected void reset ( int key, String lastName ) {
            reset();
        }
    
    
        @Override
        public boolean hasMoreElements () {
            return this.hasMore;
        }
    
    
        @Override
        public SmbComTransaction nextElement () {
            if ( this.isPrimary ) {
                this.isPrimary = false;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       * Future} fails with the given {@code exceptionType}, from the result provided by the {@code
       * fallback}. {@link Function#apply} is not invoked until the primary input has failed, so if the
       * primary input succeeds, it is never invoked. If, during the invocation of {@code fallback}, an
       * exception is thrown, this exception is used as the result of the output {@code Future}.
       *
       * <p>Usage example:
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 11 19:08:44 GMT 2023
    - 18.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

     */
    package org.apache.maven.api.services;
    
    import java.util.List;
    
    import org.apache.maven.api.model.InputLocation;
    
    /**
     * Collects problems that are encountered during model building. The primary purpose of this component is to account for
     * the fact that the problem reporter has/should not have information about the calling context and hence cannot provide
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsElevateWordToLabelCB.java

            return doGetConditionQuery();
        }
    
        // ===================================================================================
        //                                                                         Primary Key
        //                                                                         ===========
        public ElevateWordToLabelCB acceptPK(String id) {
            assertObjectNotNull("id", id);
            BsElevateWordToLabelCB cb = this;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsElevateWordCB.java

            return doGetConditionQuery();
        }
    
        // ===================================================================================
        //                                                                         Primary Key
        //                                                                         ===========
        public ElevateWordCB acceptPK(String id) {
            assertObjectNotNull("id", id);
            BsElevateWordCB cb = this;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top