Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for classy (0.08 sec)

  1. src/main/webapp/js/admin/adminlte.min.js.map

    subtitle: null,\n    close: true,\n    body: null,\n    class: null,\n  }\n\n  /**\n   * Class Definition\n   * ====================================================\n   */\n  class Toasts {\n    constructor(element, config) {\n      this._config  = config\n\n      this._prepareContainer();\n\n      const initEvent = $.Event(Event.INIT)\n      $('body').trigger(initEvent)\n    }\n\n    // Public\n\n    create() {\n      var toast = $('<div class=\"toast\" role=\"alert\" aria-live=\"assertive\" aria...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.util.LaResponseUtil;
    import org.opensearch.script.Script;
    
    public class SearchApiManager extends BaseApiManager {
    
        private static final Logger logger = LogManager.getLogger(SearchApiManager.class);
    
        protected static final String MESSAGE_FIELD = "message";
    
        protected static final String RESULT_FIELD = "result";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top