Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for covers (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

          attrs.push_back(rewriter.getNamedAttr(
              attr_minmax, rewriter.getI64IntegerAttr(quant_val)));
        }
      }
      return success();
    }
    
    // This LogicalResult covers both the hybrid and fully quantized op cases.
    LogicalResult FillAttributesForUniformQuantizedDotOp(
        PatternRewriter& rewriter, Operation* op,
        llvm::StringMap<Attribute>& identifier_to_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.stopAsync();
        assertThrows(TimeoutException.class, () -> manager.awaitStopped(1, TimeUnit.MILLISECONDS));
        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        manager.stopAsync();
        assertThrows(TimeoutException.class, () -> manager.awaitStopped(1, TimeUnit.MILLISECONDS));
        manager.awaitStopped(5, SECONDS); // no exception thrown
      }
    
      /**
       * This covers a case where if the last service to stop failed then the stopped callback would
       * never be called.
       */
      public void testSingleFailedServiceCallsStopped() {
        Service a = new FailStartService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			exceedBudget:             false,
    			testRuntimeCELCostBudget: 10,
    			expectRemainingBudget:    pointer.Int64(4), // 10 - 6
    		},
    		{
    			name: "test RuntimeCELCostBudge exactly covers",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "oldObject != null",
    				},
    				&condition{
    					Expression: "object.subsets.size() > 2",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

      Type etype = type.getElementType();
    
      // Evaluate for element types.
      if (!mlir::isa<ElementType>(etype)) {
        return {};
      }
    
      // Special case for folding splats no matter how large.
      // Only covers the case of both attrs being splats; operation-specific cases
      // like adding a zero or multiplying by one are handled elsewhere.
      SplatElementsAttr splatLhs = mlir::dyn_cast<SplatElementsAttr>(lhs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    expected.set(listOf("lib-core-1.0.jar", "lib-ext-1.0.jar"))
                }
                // Might be worth checking constraints too? Not sure if necessary because the Groovy DSL version covers that
                // and the selected versions above would be wrong.
            """
    
            expect:
            succeeds ':checkDeps'
        }
    
        private void withCheckDeps() {
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. cmd/postpolicyform.go

    	policyCondContentLength = "content-length-range"
    )
    
    // toString - Safely convert interface to string without causing panic.
    func toString(val interface{}) string {
    	switch v := val.(type) {
    	case string:
    		return v
    	default:
    		return ""
    	}
    }
    
    // toLowerString - safely convert interface to lower string
    func toLowerString(val interface{}) string {
    	return strings.ToLower(toString(val))
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	// stwStoppingTimeGC/Other are distributions of stop-the-world stopping
    	// latencies, defined as the time taken by stopTheWorldWithSema to get
    	// all Ps to stop. stwStoppingTimeGC covers all GC-related STWs,
    	// stwStoppingTimeOther covers the others.
    	stwStoppingTimeGC    timeHistogram
    	stwStoppingTimeOther timeHistogram
    
    	// stwTotalTimeGC/Other are distributions of stop-the-world total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    // need/usage. File a bug to request porting over additional fusions.
    
    // TODO(b/158265178): Support GPU-specific fusions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            outputContains("EVENT: finish :a:thing")
            outputContains("EVENT: finish :b:thing")
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "already covers CC")
        def "listener is not discarded after configuration phase when used with configuration cache"() {
            listenerReceivedConfigurationTimeData()
            registeringPlugin()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top