Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for notreally (0.28 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * @param <K> the most general key type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@code
     *     #removalListener}. Cache keys may not be null.
     * @param <V> the most general value type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@code
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

            toClose.add(it)
          }
        assertFailsWith<IOException> {
          cache["k1"]
        }
    
        // Now let it operate normally.
        filesystem.setFaultyDelete(cacheDir / "k1.0.tmp", false)
        filesystem.setFaultyDelete(cacheDir, false)
        val snapshot = cache["k1"]
        assertThat(snapshot).isNull()
      }
    
      @ParameterizedTest
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

                dependency.
    
                The term "scope" comes from the OAuth2 specification, it seems to be
                intentionaly vague and interpretable. It normally refers to permissions,
                in cases to roles.
    
                These scopes are integrated with OpenAPI (and the API docs at `/docs`).
                So they are visible in the OpenAPI specification.
                )
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                throw new SmbException("Invalid operation for workgroups, servers, or shares");
            }
    
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                // should not normally be required, but samba without NTStatus does not properly resolve the path and fails
                // with
                // STATUS_UNSUCCESSFUL
                exists();
    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)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          if (value == null) {
            tryDrainReferenceQueues();
            return null;
          }
    
          return value;
        }
    
        /**
         * Performs routine cleanup following a read. Normally cleanup happens during writes, or from
         * the cleanupExecutor. If cleanup is not observed after a sufficient number of reads, try
         * cleaning up from the read thread.
         */
        void postReadCleanup() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    * Deleting federation-push.sh ([#27400](https://github.com/kubernetes/kubernetes/pull/27400), [@nikhiljindal](https://github.com/nikhiljindal))
    * Validate-cluster finishes shortly after at most ALLOWED_NOTREADY_NODEā€¦ ([#26778](https://github.com/kubernetes/kubernetes/pull/26778), [@gmarek](https://github.com/gmarek))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	c.float64 = c.Ident("float64")
    	c.complex64 = c.Ident("complex64")
    	c.complex128 = c.Ident("complex128")
    	c.void = c.Ident("void")
    	c.string = c.Ident("string")
    	c.goVoid = c.Ident("_Ctype_void")
    
    	// Normally cgo translates void* to unsafe.Pointer,
    	// but for historical reasons -godefs uses *byte instead.
    	if *godefs {
    		c.goVoidPtr = &ast.StarExpr{X: c.byte}
    	} else {
    		c.goVoidPtr = c.Ident("unsafe.Pointer")
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top