Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for necessarily (0.6 sec)

  1. src/reflect/value.go

    // It panics if v's Kind is not [Chan], [Func], [Map], [Pointer], [Slice], [String], or [UnsafePointer].
    //
    // If v's Kind is [Func], the returned pointer is an underlying
    // code pointer, but not necessarily enough to identify a
    // single function uniquely. The only guarantee is that the
    // result is zero if and only if v is a nil func Value.
    //
    // If v's Kind is [Slice], the returned pointer is to the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	// For attachable volume types, lets check if volume is attached by reading from node lister.
    	// This would avoid exponential back-off and creation of goroutine unnecessarily. We still
    	// verify status of attached volume by directly reading from API server later on.This is necessarily
    	// to ensure any race conditions because of cached state in the informer.
    	if volumeToMount.PluginIsAttachable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

         *     case of weak keys. If we create a new entry with a key that is null at construction time,
         *     we're not sure if entry will necessarily ever be garbage collected.
         * @param newNext entry in the same bucket
         * @param key the key to copy from the original entry to the new one. Use this in preference to
         *     {@code original.getKey()}.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously("/").assertBody("retry success")
    
        // The call that seeds the connection pool.
        listener.removeUpToEvent(CallEnd::class.java)
    
        // The ResponseFailed event is not necessarily fatal!
        listener.removeUpToEvent(ConnectionAcquired::class.java)
        listener.removeUpToEvent(ResponseFailed::class.java)
        listener.removeUpToEvent(ConnectionReleased::class.java)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

           *
           * - Throw ClassCastException instead of NullPointerException, as documented in the current
           *   Javadoc. (Note that we can't necessarily "just" change our call to `getProperty` to `get`
           *   because `get` does not consult the default properties.)
           */
          builder.put(key, requireNonNull(properties.getProperty(key)));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

           *
           * - Throw ClassCastException instead of NullPointerException, as documented in the current
           *   Javadoc. (Note that we can't necessarily "just" change our call to `getProperty` to `get`
           *   because `get` does not consult the default properties.)
           */
          builder.put(key, requireNonNull(properties.getProperty(key)));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if p.UsesCgo() || p.UsesSwig() {
    		// In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
    		// There is one exception: runtime/cgo's job is to bridge the
    		// cgo and non-cgo worlds, so it necessarily has files in both.
    		// In that case gcc only gets the gcc_* files.
    		var gccfiles []string
    		gccfiles = append(gccfiles, cfiles...)
    		cfiles = nil
    		if p.Standard && p.ImportPath == "runtime/cgo" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         *     case of weak keys. If we create a new entry with a key that is null at construction time,
         *     we're not sure if entry will necessarily ever be garbage collected.
         * @param newNext entry in the same bucket
         * @param key the key to copy from the original entry to the new one. Use this in preference to
         *     {@code original.getKey()}.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        const SavedObject& object = object_graph.nodes(node_id);
        // For correctness, we cannot import functions that don't have exported
        // names, since they don't necessarily have a well-defined ABI (diagnosed
        // earlier).
        //
        // For variables/constants, pruning them is purely an optimization,
        // and more complicated since it requires use-def analysis of which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    //
    // Note that we've lost any knowledge of the type and alignment requirements
    // of the source and destination. We only know the size, and that the type
    // contains no pointers.
    // The type of the move is not necessarily v.Args[0].Type().Elem()!
    // See issue 55122 for details.
    //
    // Because expand calls runs after prove, constants useful to this pattern may not appear.
    // Both versions need to exist; the memory and register variants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top