Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for logo (0.88 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      @CanIgnoreReturnValue
      public boolean cancel(boolean mayInterruptIfRunning) {
        logger.get().log(FINER, "cancelling {0}", this);
        boolean cancelled = future.cancel(mayInterruptIfRunning);
        if (cancelled) {
          close();
        }
        return cancelled;
      }
    
      private void close() {
        logger.get().log(FINER, "closing {0}", this);
        closeables.close();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Signed divide by power of 2.
    // n / c =       n >> log(c) if n >= 0
    //       = (n+c-1) >> log(c) if n < 0
    // We conditionally add c-1 by adding n>>63>>(64-log(c)) (first shift signed, second shift unsigned).
    (Div8  <t> n (Const8  [c])) && isPowerOfTwo8(c) =>
      (Rsh8x64
        (Add8  <t> n (Rsh8Ux64  <t> (Rsh8x64  <t> n (Const64 <typ.UInt64> [ 7])) (Const64 <typ.UInt64> [int64( 8-log8(c))])))
        (Const64 <typ.UInt64> [int64(log8(c))]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      @CanIgnoreReturnValue
      public boolean cancel(boolean mayInterruptIfRunning) {
        logger.get().log(FINER, "cancelling {0}", this);
        boolean cancelled = future.cancel(mayInterruptIfRunning);
        if (cancelled) {
          close();
        }
        return cancelled;
      }
    
      private void close() {
        logger.get().log(FINER, "closing {0}", this);
        closeables.close();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	    If a test binary runs longer than duration d, panic.
    //	    If d is 0, the timeout is disabled.
    //	    The default is 10 minutes (10m).
    //
    //	-v
    //	    Verbose output: log all tests as they are run. Also print all
    //	    text from Log and Logf calls even if the test succeeds.
    //
    //	-vet list
    //	    Configure the invocation of "go vet" during "go test"
    //	    to use the comma-separated list of vet checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Log Files */
        public static final String LABELS_menu_log = "{labels.menu_log}";
    
        /** The key of the message: Job Log */
        public static final String LABELS_menu_jobLog = "{labels.menu_jobLog}";
    
        /** The key of the message: Search Log */
        public static final String LABELS_menu_searchLog = "{labels.menu_searchLog}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
            removalListener.onRemoval(notification);
          } catch (Throwable e) {
            logger.log(Level.WARNING, "Exception thrown by removal listener", e);
          }
        }
      }
    
      @SuppressWarnings("unchecked")
      final Segment<K, V>[] newSegmentArray(int ssize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top