Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for mentre (0.22 sec)

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

              return;
            }
          }
          // If all the delegates were complete, no reason for the next listener to have to
          // go through the whole list. Avoids O(n^2) behavior when the entire output list is
          // cancelled.
          delegateIndex = delegates.size();
        }
    
        private void recordCompletion() {
          if (incompleteOutputCount.decrementAndGet() == 0 && wasCancelled) {
    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)
  2. src/main/java/jcifs/smb/SmbFile.java

                if ( !exists() ) {
                    throw new SmbException(NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND, null);
                }
    
                /*
                 * Should be able to copy an entire share actually
                 */
                if ( this.fileLocator.getShare() == null || dest.getLocator().getShare() == null ) {
                    throw new SmbException("Invalid operation for workgroups or servers");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/archive/zip/reader_test.go

    		}
    		t.FailNow()
    	}
    	info, err := dirEntries[0].Info()
    	if err != nil {
    		t.Fatalf("Error reading info entry: %v", err)
    	}
    	if name := info.Name(); name != "test.txt" {
    		t.Errorf("Inconsistent name in info entry: %v", name)
    	}
    }
    
    func TestUnderSize(t *testing.T) {
    	z, err := OpenReader("testdata/readme.zip")
    	if err != nil {
    		t.Fatal(err)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       * | `http://host/a/b/c`  | `3`          |
       * | `http://host/a/b/c/` | `4`          |
       */
      @get:JvmName("pathSize")
      val pathSize: Int
        get() = pathSegments.size
    
      /**
       * The entire path of this URL encoded for use in HTTP resource resolution. The returned path will
       * start with `"/"`.
       *
       * | URL                     | `encodedPath()` |
       * | :---------------------- | :-------------- |
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
Back to top