Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 265 for Lach (0.2 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
       * @param <K> the type of the key in each entry
       * @param <V> the type of the value in each entry
       * @param <E> the type of the {@link InternalEntry} entry implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    This op copies the padded tensor on cpu to TPU without the padded data. `tensors` 
    is a list of cpu tensors with padded data. `unpadded_sizes` is a list of shape
    tensors which describes unpadded size of each dimension for each cpu tensor. 
    The size of the `unpadded_sizes` should be the same as `tensors`. They are both
    on host. `tpu_tensors` are list of tpu device tensors without the padded data.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// Base indexes of each root type. Set by gcMarkRootPrepare.
    	baseData, baseBSS, baseSpans, baseStacks, baseEnd uint32
    
    	// stackRoots is a snapshot of all of the Gs that existed
    	// before the beginning of concurrent marking. The backing
    	// store of this must not be modified because it might be
    	// shared with allgs.
    	stackRoots []*g
    
    	// Each type of GC state transition is protected by a lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunScorePlugins runs the set of configured scoring plugins.
    // It returns a list that stores scores from each plugin and total score for each Node.
    // It also returns *Status, which is set to non-success if any of the plugins returns
    // a non-success status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //   M = spatial_shape.rank
    // After rewrite:
    //   padded = zero-pad input with paddings
    //     The spatial_shape component of input.shape pads with paddings[*, 0]
    //     before each dimension, and paddings[*, 1] after each dimension.
    //   reshaped = reshape padded to:
    //     [batch]
    //     + [padded.shape[1]/block_shape[0], block_shape[0], ...,
    //        padded.shape[M]/block_shape[M-1], block_shape[M-1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // as "pointer"). A "0" bit means the word should be ignored by GC
    // (referred to as "scalar", though it could be a dead pointer value).
    //
    // Heap bitmaps
    //
    // The heap bitmap comprises 1 bit for each pointer-sized word in the heap,
    // recording whether a pointer is stored in that word or not. This bitmap
    // is stored at the end of a span for small objects and is unrolled at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
       * @param <K> the type of the key in each entry
       * @param <V> the type of the value in each entry
       * @param <E> the type of the {@link InternalEntry} entry implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // Find subgraphs marked with 'group_attribute', and build a new
      // subgraph, one for each value of 'group_attribute'.
      Status SplitIntoSubgraphs(FunctionLibraryDefinition* library);
    
      // Build a FunctionDef for each subgraph, and add it 'library'. The values of
      // the 'group_attribute' annotations become the function names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

          return super.equals(obj);
        }
    
        @Override
        public int hashCode() {
          /*
           * The sum of the sums of the hash codes in each subset is just the sum of
           * each input element's hash code times the number of sets that element
           * appears in. Each element appears in exactly half of the 2^n sets, so:
           */
          return inputSet.keySet().hashCode() << (inputSet.size() - 1);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top