Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for creation (6.41 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                parent.mkdirs();
            }
            mkdir();
        }
    
    /**
     * Create a new file but fail if it already exists. The check for
     * existance of the file and it's creation are an atomic operation with
     * respect to other filesystem activities.
     */
        public void createNewFile() throws SmbException {
            if( getUncPath0().length() == 1 ) {
    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)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<String> future1 = SettableFuture.create();
        SettableFuture<String> future2 = SettableFuture.create();
        SettableFuture<String> future3 = SettableFuture.create();
    
        // Satisfy each input prior to creating compound and check the output
        future1.set(DATA1);
        future2.set(DATA2);
        future3.set(DATA3);
    
        ListenableFuture<List<String>> compound = allAsList(future1, future2, future3);
    
    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)
  3. guava/src/com/google/common/cache/LocalCache.java

           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
           * because their next fields won't change. Statistically, at the default threshold, only about
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
           * because their next fields won't change. Statistically, at the default threshold, only about
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        SettableFuture<String> future1 = SettableFuture.create();
        SettableFuture<String> future2 = SettableFuture.create();
        SettableFuture<String> future3 = SettableFuture.create();
    
        // Satisfy each input prior to creating compound and check the output
        future1.set(DATA1);
        future2.set(DATA2);
        future3.set(DATA3);
    
        ListenableFuture<List<String>> compound = allAsList(future1, future2, future3);
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     future's result type {@code C}, see {@link DeferredCloser#eventuallyClose(Object,
       *     Executor)}.
       * @param closingExecutor the future's result will be closed on this executor
       * @deprecated Creating {@link Future}s of closeable types is dangerous in general because the
       *     underlying value may never be closed if the {@link Future} is canceled after its operation
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

              entryItr.remove();
              result = true;
            }
          }
          return result;
        }
    
        @Override
        public @Nullable Object[] toArray() {
          // creating an ArrayList so filtering happens once
          return Lists.newArrayList(iterator()).toArray();
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top