Search Options

Results per page
Sort
Preferred Languages
Advance

Results 4741 - 4750 of 6,031 for AsString (0.07 sec)

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

        }
    
        @Override
        public Integer maxValue() {
          return Integer.MAX_VALUE;
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        @Override
        public String toString() {
          return "DiscreteDomain.integers()";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns the discrete domain for values of type {@code Long}.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

        this.function = null;
      }
    
      @Override
      @CheckForNull
      protected String pendingToString() {
        @RetainedLocalRef ListenableFuture<? extends I> localInputFuture = inputFuture;
        @RetainedLocalRef F localFunction = function;
        String superString = super.pendingToString();
        String resultString = "";
        if (localInputFuture != null) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

          if (longs.compareAndSet(i, current, next)) {
            return nextVal;
          }
        }
      }
    
      /**
       * Returns the String representation of the current values of array.
       *
       * @return the String representation of the current values of array
       */
      @Override
      public String toString() {
        int iMax = length() - 1;
        if (iMax == -1) {
          return "[]";
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/DirectExecutor.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    enum DirectExecutor implements Executor {
      INSTANCE;
    
      @Override
      public void execute(Runnable command) {
        command.run();
      }
    
      @Override
      public String toString() {
        return "MoreExecutors.directExecutor()";
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/DirectExecutor.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    enum DirectExecutor implements Executor {
      INSTANCE;
    
      @Override
      public void execute(Runnable command) {
        command.run();
      }
    
      @Override
      public String toString() {
        return "MoreExecutors.directExecutor()";
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java

            super();
        }
    
        /**
         * {@link ClIndexOutOfBoundsException}を作成します。
         *
         * @param message
         *            メッセージ
         */
        public ClIndexOutOfBoundsException(final String message) {
            super(message);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/InternalErrorException.java

    package org.apache.maven;
    
    /**
     * Signals an internal error in Maven itself, e.g. a programming bug.
     *
     */
    public class InternalErrorException extends MavenExecutionException {
    
        public InternalErrorException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

    /**
     */
    public class VersionTest extends AbstractVersionTest {
        private final ModelVersionParser modelVersionParser = new DefaultModelVersionParser(new GenericVersionScheme());
    
        protected Version newVersion(String version) {
            return modelVersionParser.parseVersion(version);
        }
    
        @Test
        void testEmptyVersion() {
            assertOrder(X_EQ_Y, "0", "");
        }
    
        @Test
        void testNumericOrdering() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/AbstractMapEntryTest.java

    /**
     * Tests for {@code AbstractMapEntry}.
     *
     * @author Mike Bostock
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class AbstractMapEntryTest extends TestCase {
      private static final @Nullable String NK = null;
      private static final @Nullable Integer NV = null;
    
      private static <K extends @Nullable Object, V extends @Nullable Object> Entry<K, V> entry(
          final K key, final V value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. internal/dsync/locker.go

    	// * an error on failure of unlock request operation.
    	ForceUnlock(ctx context.Context, args LockArgs) (bool, error)
    
    	// Returns underlying endpoint of this lock client instance.
    	String() string
    
    	// Close closes any underlying connection to the service endpoint
    	Close() error
    
    	// Is the underlying connection online? (is always true for any local lockers)
    	IsOnline() bool
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 18 20:44:38 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top