Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 735 for NEXT (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       */
      public final void set(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.set(i, next);
      }
    
      /**
       * Eventually sets the element at position {@code i} to the given value.
       *
       * @param i the index
       * @param newValue the new value
       */
      public final void lazySet(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.lazySet(i, next);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/IterablesTest.java

                    return Integer.valueOf(from);
                  }
                });
    
        Iterator<Integer> resultIterator = result.iterator();
        resultIterator.next();
    
        assertThrows(NumberFormatException.class, () -> resultIterator.next());
      }
    
      public void testNullFriendlyTransform() {
        List<@Nullable Integer> input = asList(1, 2, null, 3);
        Iterable<String> result =
            Iterables.transform(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java

                throw new NoAvailableChannelException("No healthy channels available");
            }
    
            if (availableChannels.size() == 1) {
                return availableChannels.iterator().next();
            }
    
            switch (strategy) {
            case ROUND_ROBIN:
                return selectRoundRobin(availableChannels);
    
            case LEAST_LOADED:
                return selectLeastLoaded(availableChannels);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        }
    
        /**
         * Checks if there is a next page available.
         *
         * @return true if there is a next page, false otherwise
         */
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        /**
         * Sets whether there is a next page available.
         *
         * @param existNextPage true if there is a next page, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java

                            public boolean hasNext() {
                                return false;
                            }
    
                            @Override
                            public Entry<Object, Object> next() {
                                throw new NoSuchElementException();
                            }
                        };
                    }
    
                    @Override
                    public int size() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 07 11:47:42 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                final Map.Entry property = (Map.Entry) properties.next();
                final String key = (String) property.getKey();
                final StringBuilder value = new StringBuilder();
                final Iterator values = ((List) property.getValue()).iterator();
                while (values.hasNext()) {
                    value.append(values.next());
                    if (values.hasNext()) {
                        value.append(", ");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

       *
       * If this flag is set, the next four
       * bytes represent the mask key. These bytes appear after any additional bytes specified by [B1_MASK_LENGTH].
       */
      internal const val B1_FLAG_MASK = 128
    
      /**
       * Byte 1 mask for the payload length.
       *
       * If this value is [PAYLOAD_SHORT], the next two
       * bytes represent the length. If this value is [PAYLOAD_LONG], the next eight bytes
       * represent the length.
       */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

                        }
    
                        @Override
                        public Entry<String, String> next() {
                          return transform(iterator.next());
                        }
    
                        private Entry<String, String> transform(Entry<String, String> next) {
                          return new Entry<String, String>() {
    
                            @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu May 22 16:18:11 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Task.kt

     * ----------
     *
     * Tasks control their recurrence schedule. The [runOnce] function returns -1L to signify that the
     * task should not be executed again. Otherwise it returns a delay until the next execution.
     *
     * A task has at most one next execution. If the same task instance is scheduled multiple times, the
     * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/DfsReferralData.java

         *
         * @return the expiration time of this entry
         */
        long getExpiration();
    
        /**
         * Get the next referral in the chain
         *
         * @return pointer to next referral, points to self if there is no further referral
         */
        DfsReferralData next();
    
        /**
         * Get the complete UNC path link for this referral
         *
         * @return the link
         */
        String getLink();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top