Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for 221 (0.33 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			topologyHint:    &topologymanager.TopologyHint{NUMANodeAffinity: newNUMAAffinity(0, 2), Preferred: true},
    			expErr:          nil,
    			expCPUAlloc:     true,
    			expCSet:         cpuset.New(2, 21),
    		},
    	}
    
    	for _, testCase := range optionsInsensitiveTestCases {
    		for _, options := range []map[string]string{
    			nil,
    			{
    				FullPCPUsOnlyOption: "true",
    			},
    		} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    					17: {CoreID: 17, SocketID: 0, NUMANodeID: 1},
    					18: {CoreID: 18, SocketID: 0, NUMANodeID: 1},
    					19: {CoreID: 19, SocketID: 0, NUMANodeID: 1},
    					20: {CoreID: 20, SocketID: 1, NUMANodeID: 2},
    					21: {CoreID: 21, SocketID: 1, NUMANodeID: 2},
    					22: {CoreID: 22, SocketID: 1, NUMANodeID: 2},
    					23: {CoreID: 23, SocketID: 1, NUMANodeID: 2},
    					24: {CoreID: 24, SocketID: 1, NUMANodeID: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    		}
    
    		release, err := base.AcquireNet()
    		if err != nil {
    			return nil, err
    		}
    		// We explicitly set protocol.version=2 for this command to work around
    		// an apparent Git bug introduced in Git 2.21 (commit 61c771),
    		// which causes the handler for protocol version 1 to sometimes miss
    		// tags that point to the requested commit (see https://go.dev/issue/56881).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

                Collection<ComponentResolutionState> candidates = details.candidates
                assert candidates*.version == ['2.2', '2.1']
                details.select(candidates.find { it.version == '2.2' })
            }
            1 * conflictResolver.select(_) >> { args ->
                def details = args[0]
                Collection<ComponentResolutionState> candidates = details.candidates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  5. pom.xml

    			<version>${mailflute.version}</version>
    		</dependency>
    
    		<!-- csv -->
    		<dependency>
    			<groupId>com.orangesignal</groupId>
    			<artifactId>orangesignal-csv</artifactId>
    			<version>2.2.1</version>
    		</dependency>
    
    		<!-- Crawler -->
    		<dependency>
    			<groupId>org.codelibs.fess</groupId>
    			<artifactId>fess-crawler-lasta</artifactId>
    			<version>${crawler.version}</version>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

    // CHECK-NEXT:      %21 = "tfl.concatenation"(%20, %18, %17) <{axis = 0 : i32, fused_activation_function = "NONE"}> : (tensor<2xi32>, tensor<1xi32>, tensor<1xi32>) -> tensor<4xi32>
    // CHECK-NEXT:      %22 = mhlo.dynamic_reshape %2, %21 : (tensor<2x?x3x4xf32>, tensor<4xi32>) -> tensor<2x?x3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    // set of LMS-substrings respecting string ordering and equality,
    // returning the maximum assigned ID.
    // For example given the input "ababab", the LMS-substrings
    // are "aba", "aba", and "ab", renumbered as 2 2 1.
    // sa[len(sa)-numLMS:] holds the LMS-substring indexes
    // sorted in string order, so to assign numbers we can
    // consider each in turn, removing adjacent duplicates.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    // and end into a single 8-byte value. Each of these values are a summary of
    // a bitmap and are thus counts, each of which may have a maximum value of
    // 2^21 - 1, or all three may be equal to 2^21. The latter case is represented
    // by just setting the 64th bit.
    type pallocSum uint64
    
    // packPallocSum takes a start, max, and end value and produces a pallocSum.
    func packPallocSum(start, max, end uint) pallocSum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top