Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for narrower (0.14 sec)

  1. pkg/kubelet/cm/topologymanager/policy_test.go

    						},
    					},
    				},
    			},
    			expected: TopologyHint{
    				NUMANodeAffinity: NewTestBitMask(0),
    				Preferred:        true,
    			},
    		},
    		{
    			name: "Ensure less narrow preferred hints are chosen over narrower non-preferred hints",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource1": {
    							{
    								NUMANodeAffinity: NewTestBitMask(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/numa_info_test.go

    		description string
    		current     bitmask.BitMask
    		candidate   bitmask.BitMask
    		expected    string
    		numaInfo    *NUMAInfo
    	}{
    		{
    			description: "current and candidate length is not the same, current narrower",
    			current:     NewTestBitMask(0),
    			candidate:   NewTestBitMask(0, 2),
    			expected:    "current",
    			numaInfo:    &NUMAInfo{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    [CAUTION]
    ====
    Avoid using local variables in the root of the project, i.e. as pseudo project properties. They cannot be read outside of the build script and Gradle has no knowledge of them.
    
    Within a narrower context — such as configuring a task — local variables can occasionally be helpful.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/runtime/mpagealloc.go

    	}
    	// foundFree takes the given address range [addr, addr+size) and
    	// updates firstFree if it is a narrower range. The input range must
    	// either be fully contained within firstFree or not overlap with it
    	// at all.
    	//
    	// This way, we'll record the first summary we find with any free
    	// pages on the root level and narrow that down if we descend into
    	// that summary. But as soon as we need to iterate beyond that summary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  5. src/runtime/mkpreempt.go

    	p("NOP SP")
    
    	l.save()
    
    	// Apparently, the signal handling code path in darwin kernel leaves
    	// the upper bits of Y registers in a dirty state, which causes
    	// many SSE operations (128-bit and narrower) become much slower.
    	// Clear the upper bits to get to a clean state. See issue #37174.
    	// It is safe here as Go code don't use the upper bits of Y registers.
    	p("#ifdef GOOS_darwin")
    	p("#ifndef hasAVX")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    	testDirFiles(t, "../../../../internal/types/testdata/check", 50, false) // TODO(gri) narrow column tolerance
    }
    func TestSpec(t *testing.T) { testDirFiles(t, "../../../../internal/types/testdata/spec", 20, false) } // TODO(gri) narrow column tolerance
    func TestExamples(t *testing.T) {
    	testDirFiles(t, "../../../../internal/types/testdata/examples", 125, false)
    } // TODO(gri) narrow column tolerance
    func TestFixedbugs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     * not have a (declared) member scope.
     *
     * Members declared by the enum class and overridden in the enum entry's body will be accessible, of course, but only the base version
     * declared in the enum class. For example, a narrowed return type of an overridden member in an enum entry's body will not be visible
     * outside the body.
     *
     * #### Example
     *
     * ```kotlin
     * enum class E {
     *     A {
     *         val x: Int = 5
     *     }
     * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/IntMath.java

      }
    
      /**
       * Returns 1 if {@code x < y} as unsigned integers, and 0 otherwise. Assumes that x - y fits into
       * a signed int. The implementation is branch-free, and benchmarks suggest it is measurably (if
       * narrowly) faster than the straightforward ternary expression.
       */
      @VisibleForTesting
      static int lessThanBranchFree(int x, int y) {
        // The double negation is optimized away by normal Java, but is necessary for GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/IntMath.java

      }
    
      /**
       * Returns 1 if {@code x < y} as unsigned integers, and 0 otherwise. Assumes that x - y fits into
       * a signed int. The implementation is branch-free, and benchmarks suggest it is measurably (if
       * narrowly) faster than the straightforward ternary expression.
       */
      @VisibleForTesting
      static int lessThanBranchFree(int x, int y) {
        // The double negation is optimized away by normal Java, but is necessary for GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    We'll establish two groups for our global lifecycle tasks: one for tasks relevant to local development, such as running all checks, and another exclusively for our CI system.
    
    Once again, we narrowed down the tasks listed to our specific groups:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val globalBuildGroup = "My global build"
    val ciBuildGroup = "My CI build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top