Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 952 for miny (0.05 sec)

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

       * non-nullable {@code cause}, as many users expect to find one.
       */
      public ExecutionError(@CheckForNull String message, @CheckForNull Error cause) {
        super(message, cause);
      }
    
      /**
       * Creates a new instance with {@code null} as its detail message and the given cause. Prefer to
       * provide a non-nullable {@code cause}, as many users expect to find one.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-params.md

    Because of this, **FastAPI** itself provides an alternative API documentation (using ReDoc), which you can access at <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>:
    
    <img src="/img/tutorial/path-params/image02.png">
    
    The same way, there are many compatible tools. Including code generation tools for many languages.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		Enabled: []config.Plugin{
    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    			{Name: names.NodeAffinity, Weight: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

          compute_fn, compute_fn_inputs.data(), compute_fn_inputs.size(), status);
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
    
      // TODO(bmzhao): Finish API on FunctionMetadata args, so we know how many
      // inputs + outputs a function has.
      TFE_TensorHandle* compute_fn_outputs[1] = {nullptr};
      int num_retvals = 1;
    
      TFE_Execute(compute_fn_op, &compute_fn_outputs[0], &num_retvals, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/policy.go

    	// MaximumAllowedMinorVersionUpgradeSkew describes how many minor versions kubeadm can upgrade the control plane version in one go
    	MaximumAllowedMinorVersionUpgradeSkew = 1
    
    	// MaximumAllowedMinorVersionDowngradeSkew describes how many minor versions kubeadm can upgrade the control plane version in one go
    	MaximumAllowedMinorVersionDowngradeSkew = 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskCreationPerformanceTest.groovy

    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["createLotsOfTasks"])
    )
    class TaskCreationPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "create many tasks"() {
            given:
            runner.tasksToRun = ['help']
            runner.runs = 60
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    * the Daemon received an unknown file system event
    * too many changes happened, and the watching API couldn't handle it
    
    Too many open files on macOS::
    If you receive the `java.io.IOException: Too many open files` error on macOS, raise your open files limit.
    See https://superuser.com/a/443168/8117[this post] for more details.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel_test.go

    			requests: []*resourceapi.NamedResourcesRequest{requestNone},
    
    			expectAllocateErr: true,
    		},
    
    		"many": {
    			model:    twoInstances,
    			filter:   filterAny,
    			requests: []*resourceapi.NamedResourcesRequest{requestAny, requestAny},
    
    			expectAllocation: []string{instance1, instance2},
    		},
    
    		"too-many": {
    			model:    oneInstance,
    			filter:   filterAny,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/internal/trace/batchcursor.go

    func heapSiftDown(heap []*batchCursor, i int) int {
    	for {
    		m := min3(heap, i, 2*i+1, 2*i+2)
    		if m == i {
    			// Heap invariant already applies.
    			break
    		}
    		heap[i], heap[m] = heap[m], heap[i]
    		i = m
    	}
    	return i
    }
    
    func min3(b []*batchCursor, i0, i1, i2 int) int {
    	minIdx := i0
    	minT := maxTime
    	if i0 < len(b) {
    		minT = b[i0].ev.time
    	}
    	if i1 < len(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/proxy/util/endpoints_test.go

    	}{
    		{"1.2.3.4", "1.2.3.4", noError},
    		{"1.2.3.4:9999", "1.2.3.4", noError},
    		{"2001:db8::1:1", "2001:db8::1:1", noError},
    		{"[2001:db8::2:2]:9999", "2001:db8::2:2", noError},
    		{"1.2.3.4::9999", "", "too many colons"},
    		{"1.2.3.4:[0]", "", "unexpected '[' in address"},
    		{"1.2.3:8080", "", "invalid ip part"},
    	}
    
    	for _, tc := range testCases {
    		ip := IPPart(tc.endpoint)
    		if tc.expectedError == noError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top