Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for small7 (0.26 sec)

  1. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    template <typename Range, typename... RangeTs>
    size_t Size(Range&& range, RangeTs&&... ranges) {
      return range.size() + Size(std::forward<RangeTs>(ranges)...);
    }
    
    // Concats all elements in `ranges` and returns a small vector as a result.
    template <typename ValueT, typename... RangeTs>
    llvm::SmallVector<ValueT, 4> Concat(RangeTs&&... ranges) {
      llvm::SmallVector<int64_t, 4> results;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	}
    	return ""
    }
    
    var handlerBodyCloseTests = [...]handlerBodyCloseTest{
    	// Small enough to slurp past to the next request +
    	// has Content-Length.
    	0: {
    		bodySize:      20 << 10,
    		bodyChunked:   false,
    		reqConnClose:  false,
    		wantEOFSearch: true,
    		wantNextReq:   true,
    	},
    
    	// Small enough to slurp past to the next request +
    	// is chunked.
    	1: {
    		bodySize:      20 << 10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "in":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	idx := len(s.s)
    	// TODO(bradfitz): for simplicity, this always allocates a new int-sized
    	// allocation to store the index. But generally the set will be small and
    	// under a scannable-threshold. As an optimization, we could permit the *int
    	// to be nil when the set is small and should be scanned. This works even if
    	// the set grows over the threshold with delete handles outstanding because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    			TimeoutSeconds: int32Ptr(31),
    		},
    		}, true),
    		expectedError: `webhooks[0].timeoutSeconds: Invalid value: 31: the timeout value must be between 1 and 30 seconds`,
    	}, {
    		name: "timeout seconds cannot be smaller than 1",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:           "webhook.k8s.io",
    			ClientConfig:   validClientConfig,
    			SideEffects:    &unknownSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    :5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){m...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/callback.go

    		}
    	}()
    	C.callPanic()
    }
    
    // Test that C code can return a value if it calls a Go function that
    // causes a stack copy.
    func testReturnAfterGrow(t *testing.T) {
    	// Use a new goroutine so that we get a small stack.
    	c := make(chan int)
    	go func() {
    		c <- int(C.returnAfterGrow())
    	}()
    	if got, want := <-c, 123456; got != want {
    		t.Errorf("got %d want %d", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	//    The constant must be less than podEvictionTimeout.
    	// 2. nodeStatusUpdateFrequency needs to be large enough for kubelet to generate node
    	//    status. Kubelet may fail to update node status reliably if the value is too small,
    	//    as it takes time to gather all necessary node information.
    	nodeStatusUpdateFrequency time.Duration
    
    	// nodeStatusReportFrequency is the frequency that kubelet posts node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: return %[[BROADCAST]]
    
    // -----
    
    // Tests that a quantized `stablehlo.broadcast_in_dim` is converted to
    // tfl.expand_dims and `tfl.broadcast_to` when input rank is smaller than output
    // rank.
    
    func.func @broadcast_in_dim_with_expand(
        %arg0: tensor<1x2x!quant.uniform<i8:f32, 2.000000e+00:3>>
      ) -> tensor<3x2x1x1x!quant.uniform<i8:f32, 2.000000e+00:3>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
Back to top