Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sensible (0.29 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       scalability or other performance factors (see the separate "jtreg" tests for a set intended
     *       to check these for the most central aspects of functionality.) So, most tests use the
     *       smallest sensible numbers of threads, collection sizes, etc needed to check basic
     *       conformance.
     *   <li>The test classes currently do not declare inclusion in any particular package to simplify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    	Short:     "environment variables",
    	Long: `
    
    The go command and the tools it invokes consult environment variables
    for configuration. If an environment variable is unset or empty, the go
    command uses a sensible default setting. To see the effective setting of
    the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // # Environment variables
    //
    // The go command and the tools it invokes consult environment variables
    // for configuration. If an environment variable is unset or empty, the go
    // command uses a sensible default setting. To see the effective setting of
    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    // run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    			compressedOffset += part.Size
    		} else {
    			firstPartIdx = i
    			skipLength = cumulativeActualSize - part.ActualSize
    			break
    		}
    	}
    	partSkip = offset - skipLength
    
    	// Load index and skip more if feasible.
    	if partSkip > 0 && len(oi.Parts) > firstPartIdx && len(oi.Parts[firstPartIdx].Index) > 0 {
    		_, isEncrypted := crypto.IsEncrypted(oi.UserDefined)
    		if isEncrypted {
    			dec, err := decrypt(oi.Parts[firstPartIdx].Index)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // * 1 IP address. This is managed, with IP explicit
    // * Nothing. This is managed, with IP auto assigned
    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	memRequests := resource.GetResourceRequest(podCopy, v1.ResourceMemory)
    	if cpuRequests > cpuAvailable || memRequests > memAvailable {
    		klog.V(3).InfoS("Resize is not feasible as request exceeds allocatable node resources", "pod", podCopy.Name)
    		return false, podCopy, v1.PodResizeStatusInfeasible
    	}
    
    	// Treat the existing pod needing resize as a new pod with desired resources seeking admit.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. RELEASE.md

    ## Bug Fixes and Other Changes
    
    *   Added a versioning framework for `GraphDef`s to ensure compatibility
    *   Enforced Python 3 compatibility
    *   Internal changes now show up as sensibly separated commits
    *   Open-sourced the doc generator
    *   Un-fork Eigen
    *   Simplified the `BUILD` files and cleaned up C++ headers
    *   TensorFlow can now be used as a submodule in another bazel build
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top