Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 444 for small8 (0.11 sec)

  1. guava/src/com/google/common/primitives/Ints.java

        //     imagine a line separating the first block from the second, we can proceed by exchanging
        //     the smaller of these blocks with the far end of the other one. That leaves us with a
        //     smaller version of the same problem.
        //     Say we are rotating abcdefgh by 5. We start with abcde|fgh. The smaller block is [fgh]:
        //     [abc]de|[fgh] -> [fgh]de|[abc]. Now [fgh] is in the right place, but we need to swap [de]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator.go

    	}
    
    	scaleUpWithUnready := len(unreadyPods) > 0 && usageRatio > 1.0
    	if !scaleUpWithUnready && len(missingPods) == 0 {
    		if math.Abs(1.0-usageRatio) <= c.tolerance {
    			// return the current replicas if the change would be too small
    			return currentReplicas, utilization, rawUtilization, timestamp, nil
    		}
    
    		// if we don't have any unready or missing pods, we can calculate the new replica count now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. src/runtime/runtime_test.go

    				// confusing the benchmarking framework for small b.N.
    				b.StopTimer()
    				stop()
    			})
    		}
    	}
    
    	// Measure the cost of counting goroutines
    	b.Run("small-nil", run(func() bool {
    		GoroutineProfile(nil)
    		return true
    	}))
    
    	// Measure the cost with a small set of goroutines
    	n := NumGoroutine()
    	p := make([]StackRecord, 2*n+2*GOMAXPROCS(0))
    	b.Run("small", run(func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	}{
    		// dual-stack:
    		{"dual IPv4 only, but mask too small. Default node-mask", "10.0.0.16/29", nil, false},
    		{"dual IPv4 only, but mask too small. Configured node-mask", "10.0.0.16/24", []kubeadmapi.Arg{{Name: "node-cidr-mask-size-ipv4", Value: "23"}}, false},
    		{"dual IPv6 only, but mask too small. Default node-mask", "2001:db8::1/112", nil, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/math/big/ratconv_test.go

    	"1e-305",
    	"1e-306",
    	"1e-307",
    	"1e-308",
    	"1e-309",
    	"1e-310",
    	"1e-322",
    	// smallest denormal
    	"5e-324",
    	"4e-324",
    	"3e-324",
    	// too small
    	"2e-324",
    	// way too small
    	"1e-350",
    	"long:1e-400000",
    	// way too small, negative
    	"-1e-350",
    	"long:-1e-400000",
    
    	// try to overflow exponent
    	// [Disabled: too slow and memory-hungry with rationals.]
    	// "1e-4294967296",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. tensorflow/cc/BUILD

            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_cc_test(
        name = "framework_while_gradients_test",
        size = "small",
        srcs = ["framework/while_gradients_test.cc"],
        deps = [
            ":cc_ops",
            ":client_session",
            ":grad_op_registry",
            ":grad_ops",
            ":gradients",
            ":testutil",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. gradle/wrapper/gradle-wrapper.jar

    http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore.go

    	return lo >= sr.lo() && hi <= sr.hi()
    }
    
    // merge returns the union of sr and [lo:hi].
    // merge is allowed to return something smaller than the union.
    func (sr shadowRange) merge(lo, hi int64) shadowRange {
    	if lo < 0 || hi > 0xffff {
    		// Ignore offsets that are too large or small.
    		return sr
    	}
    	if sr.lo() == sr.hi() {
    		// Old range is empty - use new one.
    		return shadowRange(lo + hi<<16)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    [[intro_multi_project_builds]]
    = Multi-Project Build Basics
    
    Gradle supports multi-project builds.
    
    image::gradle-basic-9.png[]
    
    While some small projects and monolithic applications may contain a single build file and source tree, it is often more common for a project to have been split into smaller, interdependent modules.
    The word "interdependent" is vital, as you typically want to link the many modules together through a single build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/nilcheck.go

    				ptrs = append(ptrs, v.Args[1])
    			}
    
    			for _, ptr := range ptrs {
    				// Check to make sure the offset is small.
    				switch opcodeTable[v.Op].auxType {
    				case auxSym:
    					if v.Aux != nil {
    						continue
    					}
    				case auxSymOff:
    					if v.Aux != nil || v.AuxInt < 0 || v.AuxInt >= minZeroPage {
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top