Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for Maximum (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // Division with large denominator is numerically unstable. To improve
        // numerical stability, subtract each batch with their max element so that
        // the maximum input value is zero. It can be shown that softmax computed
        // after adding or subtracting all inputs in a batch using a common value
        // gives mathematically equivalent result.
        auto max_logits =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    		if _, err := client.Write([]byte{byte(recordTypeHandshake), 3, 4, 0, 4, typeCertificate, 1, 255, 255}); err != nil {
    			t.Log(err)
    		}
    	}()
    
    	expectedErr := "tls: handshake message of length 131071 bytes exceeds maximum of 65536 bytes"
    	servConn := Server(server, testConfig)
    	err := servConn.Handshake()
    	if err == nil {
    		t.Fatal("unexpected success")
    	}
    	if err.Error() != expectedErr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/time/format.go

    		return
    	}
    	if ns < 0 {
    		rangeErrString = "fractional second"
    		return
    	}
    	// We need nanoseconds, which means scaling by the number
    	// of missing digits in the format, maximum length 10.
    	scaleDigits := 10 - nbytes
    	for i := 0; i < scaleDigits; i++ {
    		ns *= 10
    	}
    	return
    }
    
    var errLeadingInt = errors.New("time: bad [0-9]*") // never printed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    )
    
    const (
    	// reconcilerLoopSleepDuration is the amount of time the reconciler loop
    	// waits between successive executions
    	reconcilerLoopSleepDuration = 1 * time.Nanosecond
    	// waitForAttachTimeout is the maximum amount of time a
    	// operationexecutor.Mount call will wait for a volume to be attached.
    	waitForAttachTimeout         = 1 * time.Second
    	nodeName                     = k8stypes.NodeName("mynodename")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    			destVol:     "dest-vol",
    			srcPath:     "file3",
    			destPath:    "file-two",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 5.
    		// TestXLStorage case with io error count set to maximum allowed count.
    		// expected not to fail.
    		{
    			srcVol:      "src-vol",
    			destVol:     "dest-vol",
    			srcPath:     "file4",
    			destPath:    "file-three",
    			expectedErr: nil,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The build worker pool is shared across all build tasks. This means that when using <<performance.adoc#parallel_execution,parallel project execution>>, the maximum number of concurrent individual compilation operations does not increase. For example, if the build machine has 4 processing cores and 10 projects are compiling in parallel, Gradle will only use 4 total workers, not 40.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    const (
    	fixedRootFinalizers = iota
    	fixedRootFreeGStacks
    	fixedRootCount
    
    	// rootBlockBytes is the number of bytes to scan per data or
    	// BSS root.
    	rootBlockBytes = 256 << 10
    
    	// maxObletBytes is the maximum bytes of an object to scan at
    	// once. Larger objects will be split up into "oblets" of at
    	// most this size. Since we can scan 1–2 MB/ms, 128 KB bounds
    	// scan preemption at ~100 µs.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	// with "physical" frame pointers but handle skipping "logical"
    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    	// This should be at least as large as the largest skip value
    	// used for profiling; otherwise stacks may be truncated inconsistently
    	maxSkip = 5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"timeoutSeconds":       "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    	"k8s.io/kubernetes/pkg/util/slice"
    )
    
    const (
    	// Specifies the maximum timeout a permit plugin can return.
    	maxTimeout = 15 * time.Minute
    )
    
    // frameworkImpl is the component responsible for initializing and running scheduler
    // plugins.
    type frameworkImpl struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top