Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for accessKey (0.4 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.scoping.UnionQuery;
    import org.dbflute.cbean.sqlclause.SqlClause;
    import org.dbflute.cbean.sqlclause.orderby.OrderByClause;
    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.scoping.UnionQuery;
    import org.dbflute.cbean.sqlclause.SqlClause;
    import org.dbflute.cbean.sqlclause.orderby.OrderByClause;
    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashSet.java

     */
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactHashSet<E extends @Nullable Object> extends AbstractSet<E> implements Serializable {
      // TODO(user): cache all field accesses in local vars
    
      /** Creates an empty {@code CompactHashSet} instance. */
      public static <E extends @Nullable Object> CompactHashSet<E> create() {
        return new CompactHashSet<>();
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Feb 05 21:38:59 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/CacheTesting.java

              assertTrue(entries.add(current));
              if (prev != null) {
                assertSame(prev, current.getPreviousInAccessQueue());
                assertSame(prev.getNextInAccessQueue(), current);
                // read accesses may be slightly misordered
                assertTrue(
                    prev.getAccessTime() <= current.getAccessTime()
                        || prev.getAccessTime() - current.getAccessTime() < 1000);
              }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

            return this.inDfs;
        }
    
    
        /**
         * 
         */
        void markDomainDfs () {
            this.inDomainDfs = true;
        }
    
    
        /**
         * @return whether this tree was accessed using domain DFS
         */
        public boolean isInDomainDfs () {
            return this.inDomainDfs;
        }
    
    
        /**
         * @param referral
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

      private final class ServiceDelegate extends AbstractService {
    
        // A handle to the running task so that we can stop it when a shutdown has been requested.
        // These two fields are volatile because their values will be accessed from multiple threads.
        @CheckForNull private volatile Cancellable runningTask;
        @CheckForNull private volatile ScheduledExecutorService executorService;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 25.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

      /**
       * This object is unsafely published, but avoids problematic races by relying exclusively on the
       * identity equality of its Thread field so that the task field is only accessed by a single
       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * When specified as the <tt>shareAccess</tt> constructor parameter,
     * other SMB clients (including other threads making calls into jCIFS)
     * will not be permitted to access the target file and will receive "The
     * file is being accessed by another process" message.
     */
        public static final int FILE_NO_SHARE     = 0x00;
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

          for (int i = delegateIndex; i < delegates.size(); i++) {
            if (delegates.get(i).setFuture(inputFuture)) {
              recordCompletion();
              // this is technically unnecessary, but should speed up later accesses
              delegateIndex = i + 1;
              return;
            }
          }
          // If all the delegates were complete, no reason for the next listener to have to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top