Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 232 for factories (0.14 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

     *
     * <p>This class should not be assumed to be universally superior to {@code java.util.HashSet}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Dimitris Andreou
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    	}
    	return nil
    }
    
    // A PrivateKey represents an RSA key
    type PrivateKey struct {
    	PublicKey            // public part.
    	D         *big.Int   // private exponent
    	Primes    []*big.Int // prime factors of N, has >= 2 elements.
    
    	// Precomputed contains precomputed values that speed up RSA operations,
    	// if available. It must be generated by calling PrivateKey.Precompute and
    	// must not be modified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       anything about how the property is tested. To find out, read the code.
     *   <li>These tests are "conformance tests", and do not attempt to test throughput, latency,
     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    func (adc *attachDetachController) VolumeAttachmentLister() storagelistersv1.VolumeAttachmentLister {
    	return adc.volumeAttachmentLister
    }
    
    // VolumeHost implementation
    // This is an unfortunate requirement of the current factoring of volume plugin
    // initializing code. It requires kubelet specific methods used by the mounting
    // code to be implemented by all initializers even if the initializer does not
    // do mounting (like this attach/detach controller).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    )
    
    // shouldOrphanDependents returns true if the finalizer for orphaning should be set
    // updated for FinalizerOrphanDependents. In the order of highest to lowest
    // priority, there are three factors affect whether to add/remove the
    // FinalizerOrphanDependents: options, existing finalizers of the object,
    // and e.DeleteStrategy.DefaultGarbageCollectionPolicy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       anything about how the property is tested. To find out, read the code.
     *   <li>These tests are "conformance tests", and do not attempt to test throughput, latency,
     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    		//     TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    		//
    		// The parser is checking syntactic correctness;
    		// remaining syntactic errors are considered AST errors here.
    		// TODO(gri) better factoring of error handling (invalid ASTs)
    		//
    		var lhs *ast.Ident // lhs identifier or nil
    		var rhs ast.Expr
    		switch guard := s.Assign.(type) {
    		case *ast.ExprStmt:
    			rhs = guard.X
    		case *ast.AssignStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashMap.java

     *
     * <p>This class should not be assumed to be universally superior to {@code java.util.HashMap}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashMap.java

     *
     * <p>This class should not be assumed to be universally superior to {@code java.util.HashMap}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      if (common_inner_operands.empty()) {
        return MakeInternedAndOr(std::move(simplified_ops), pred_kind);
      }
    
      // For all predicates that can be factored out, remove them and recreate the
      // subops.
      std::vector<Predicate*> factored_ops;
      for (Predicate* op : simplified_ops) {
        std::vector<Predicate*> new_sub_op_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top