Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for classy (0.09 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

     * @author Nishant Thakkar
     * @author Sven Mawson
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Futures extends GwtFuturesCatchingSpecialization {
    
      // A note on memory visibility.
      // Many of the utilities in this class (transform, withFallback, withTimeout, asList, combine)
      // have two requirements that significantly complicate their design.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    namespace tensorflow {
    
    namespace {
    
    using tsl::StatusOr;
    
    // Represents a logical predicate, used as described in the algorithm overview
    // above.
    class Predicate {
     public:
      enum class Kind { kAnd, kOr, kNot, kAndRecurrence, kSymbol, kIntSymbol };
    
      virtual string ToString() const = 0;
    
      // An ID assigned to the Predicate at construction time.  Conceptually like a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

     * @author Nishant Thakkar
     * @author Sven Mawson
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Futures extends GwtFuturesCatchingSpecialization {
    
      // A note on memory visibility.
      // Many of the utilities in this class (transform, withFallback, withTimeout, asList, combine)
      // have two requirements that significantly complicate their design.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	if storagehelpers.PersistentVolumeClaimHasClass(claim) {
    		// The user asked for a class.
    		return false, nil
    	}
    
    	class, err := util.GetDefaultClass(ctrl.classLister)
    	if err != nil {
    		return false, err
    	} else if class == nil {
    		logger.V(4).Info("Can not assign storage class to PersistentVolumeClaim: default storage class not found", "PVC", klog.KObj(claim))
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from tensorflow.python.types import core
    
    # Type aliases for supported attribute types.
    _AttrValType = Union[List[int], bool, str, None]
    
    
    class QuantizedModelTest(test.TestCase, parameterized.TestCase):
      """Base test class for TF-quant tests."""
    
      def setUp(self) -> None:
        super().setUp()
    
        # Many test cases for quantization involve creating and saving the input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    .listingblock pre:not(.highlight),
    .listingblock pre[class="highlight"],
    .listingblock pre[class^="highlight "],
    .listingblock pre.CodeRay,
    .listingblock pre.prettyprint {
    	background: var(--code-color);
    }
    
    .sidebarblock .literalblock pre,
    .sidebarblock .listingblock pre:not(.highlight),
    .sidebarblock .listingblock pre[class="highlight"],
    .sidebarblock .listingblock pre[class^="highlight "],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //
    // is lowered to:
    //
    //   %sum0 = "tf.AddV2"(%0, %1)
    //   %sum1 = "tf.AddV2"(%2, %3)
    //   %sum2 = "tf.AddV2"(%sum0, %sum1)
    //   %result = "tf.AddV2"(%sum2, %4)
    //
    class LowerAddNOp : public RewritePattern {
     public:
      explicit LowerAddNOp(MLIRContext *context)
          : RewritePattern(AddNOp::getOperationName(), 1, context,
                           {AddV2Op::getOperationName()}) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        abstract T getA()
    
        abstract T getB()
    
        abstract T getC()
    
        abstract <S extends T> S getD()
    
        Class<T> getType() {
            return a.class
        }
    
        @SuppressWarnings("GrUnnecessaryPublicModifier")
        public <S extends T> Class<S> getOtherType() {
            return d.class as Class<S>
        }
    
        List<T> iterationOrder(T... elements) {
            return elements
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    	if a1 != 0 {
    		return &optab[a1-1]
    	}
    
    	// first source operand
    	a1 = int(p.From.Class)
    	if a1 == 0 {
    		a1 = c.aclass(&p.From) + 1
    		p.From.Class = int8(a1)
    	}
    	a1--
    
    	// first destination operand
    	a4 := int(p.To.Class)
    	if a4 == 0 {
    		a4 = c.aclass(&p.To) + 1
    		p.To.Class = int8(a4)
    	}
    	a4--
    
    	// 2nd source operand
    	a2 := C_NONE
    	if p.Reg != 0 {
    		a2 = C_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				this.set_focus();
    				if(this._get_settings().core.rtl) {
    					this.get_container().addClass("jstree-rtl").css("direction", "rtl");
    				}
    				this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
    				this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top