Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 183 for outlier (0.28 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

    static PassRegistration<InsertCustomAggregationOpsPass> pass;
    
    class AddCustomAggregationOp : public RewritePattern {
     public:
      // Does not take ownership of context, which must refer to a valid value that
      // outlives this object.
      explicit AddCustomAggregationOp(MLIRContext *context,
                                      const CalibrationOptions &calib_opts)
          : RewritePattern(MatchAnyOpTypeTag(), /*benefit=*/1, context),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/css/all.css

    }
    
    .card-header {
        border-bottom-color: rgba(255, 255, 255, 0.1)
    }
    
    #scroll-to-top {
        display: none;
        position: fixed;
        top: 3.7rem;
        right: 10px;
        z-index: 99;
        outline: none;
        background-color: rgba(90, 90, 90, 0.7);
        color: rgba(0, 0, 0, 0.4);
        cursor: pointer;
        padding: 3px 5px;
        border-radius: 10px;
        font-size: 1rem;
        border: 0;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableRangeMap.java

              }
            };
        final ImmutableRangeMap<K, V> outer = this;
        return new ImmutableRangeMap<K, V>(subRanges, values.subList(lowerIndex, upperIndex)) {
          @Override
          public ImmutableRangeMap<K, V> subRangeMap(Range<K> subRange) {
            if (range.isConnected(subRange)) {
              return outer.subRangeMap(subRange.intersection(range));
            } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // contains places with the same source. If a stack occurs multiple times
      // in places, only the outer-most occurrence is kept.
      function partitionPlaces(places) {
        // Find outer-most slot per stack (used later to elide duplicate stacks).
        const stackMap = new Map();  // Map from stack index to outer-most slot#
        for (const place of places) {
          const prevSlot = stackMap.get(place.Stack);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		name                     string
    		createKubeConfigFunction func(outDir string, cfg *kubeadmapi.InitConfiguration) error
    		expectedFiles            []string
    		expectedError            bool
    	}{
    		{ // Test createKubeConfigFiles fails for unknown kubeconfig is requested
    			name: "createKubeConfigFiles",
    			createKubeConfigFunction: func(outDir string, cfg *kubeadmapi.InitConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                private void renderTableHeader() {
                    div().classAttr("row alert alert-primary m-0");
                        div().classAttr("col p-0");
                            a().classAttr("btn btn-sm btn-outline-primary").attr("data-toggle", "tooltip").title("Go back to Performance Coordinator Build")
                                .href(getTeamCityWebUrlFromBuildId(System.getenv("BUILD_ID"))).target("_blank").text("<-").end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    func (w *WebhookTokenAuthenticator) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    	// We take implicit audiences of the API server at WebhookTokenAuthenticator
    	// construction time. The outline of how we validate audience here is:
    	//
    	// * if the ctx is not audience limited, don't do any audience validation.
    	// * if ctx is audience-limited, add the audiences to the tokenreview spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/grappler/grappler.h

    // invalidated, to prevent further incorrect optimizations based on wrong shape
    // and data type properties.
    typedef struct TF_GraphProperties TF_GraphProperties;
    
    // Create GraphProperties. The item must outlive the properties.
    TF_CAPI_EXPORT extern TF_GraphProperties* TF_NewGraphProperties(
        const TF_GrapplerItem* item);
    
    // Delete GraphProperties.
    TF_CAPI_EXPORT extern void TF_DeleteGraphProperties(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                    <la:hidden property="sortOrder"/>
                    <div class="row">
                        <div class="col-md-12">
                            <div
                                    class="card card-outline <c:if test="${crudMode == 1 || crudMode == 2}">card-success</c:if>">
                                <div class="card-header">
                                    <jsp:include page="/WEB-INF/view/common/admin/crud/header.jsp"></jsp:include>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Bytes.java

        checkNotNull(target, "target");
        if (target.length == 0) {
          return 0;
        }
    
        outer:
        for (int i = 0; i < array.length - target.length + 1; i++) {
          for (int j = 0; j < target.length; j++) {
            if (array[i + j] != target[j]) {
              continue outer;
            }
          }
          return i;
        }
        return -1;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top