Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for associateBy (1.68 sec)

  1. doc/go1.17_spec.html

    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    </p>
    
    <h3 id="Method_sets">Method sets</h3>
    <p>
    A type has a (possibly empty) <i>method set</i> associated with it.
    The method set of an <a href="#Interface_types">interface type</a> is its interface.
    The method set of any other type <code>T</code> consists of all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Prunes unreachable ops in a tf_executor.graph";
    
      let description = [{
        This pass removes ops from a `tf_executor.graph` that are not transitively, via
        data or control dependencies, connected to the associated `tf_executor.fetch`
        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				CaCertificates:    "Commander William T. Riker",
    			},
    			"cannot have associated", "",
    		},
    		{
    			"istio_mutual with private key",
    			&networking.ServerTLSSettings{
    				Mode:       networking.ServerTLSSettings_ISTIO_MUTUAL,
    				PrivateKey: "Khan Noonien Singh",
    			},
    			"cannot have associated private key", "",
    		},
    		{
    			"istio_mutual with credential name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       * value are non-null and the entry does not need to be serializable.
       *
       * @param key the key to be associated with the returned entry
       * @param value the value to be associated with the returned entry
       */
      @GwtCompatible(serializable = true)
      public static <K extends @Nullable Object, V extends @Nullable Object> Entry<K, V> immutableEntry(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

       * value are non-null and the entry does not need to be serializable.
       *
       * @param key the key to be associated with the returned entry
       * @param value the value to be associated with the returned entry
       */
      @GwtCompatible(serializable = true)
      public static <K extends @Nullable Object, V extends @Nullable Object> Entry<K, V> immutableEntry(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    		dc.ci = nil
    	})
    
    	dc.db.mu.Lock()
    	dc.db.numOpen--
    	dc.db.maybeOpenNewConnections()
    	dc.db.mu.Unlock()
    
    	dc.db.numClosed.Add(1)
    	return err
    }
    
    // driverStmt associates a driver.Stmt with the
    // *driverConn from which it came, so the driverConn's lock can be
    // held during calls.
    type driverStmt struct {
    	sync.Locker // the *driverConn
    	si          driver.Stmt
    	closed      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    //
    // The main concepts are:
    // G - goroutine.
    // M - worker thread, or machine.
    // P - processor, a resource that is required to execute Go code.
    //     M must have an associated P to execute Go code, however it can be
    //     blocked or in a syscall w/o an associated P.
    //
    // Design doc at https://golang.org/s/go11sched.
    
    // Worker thread parking/unparking.
    // We need to balance between keeping enough running worker threads to utilize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		}
    		panic("reflect: call of reflect.Value.Len on ptr to non-array Value")
    	}
    	panic(&ValueError{"reflect.Value.Len", v.kind()})
    }
    
    var stringType = rtypeOf("")
    
    // MapIndex returns the value associated with key in the map v.
    // It panics if v's Kind is not [Map].
    // It returns the zero Value if key is not found in the map or if v represents a nil map.
    // As in Go, the key's value must be assignable to the map's key type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top