Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 475 for qint (0.06 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static.go

    	}
    
    	// try to find the preferred hint with the minimal number of NUMA nodes, relevant for the restricted policy
    	return findBestHint(filteredHints), nil
    }
    
    func isHintInGroup(hint []int, group []int) bool {
    	sort.Ints(hint)
    	sort.Ints(group)
    
    	hintIndex := 0
    	for i := range group {
    		if hintIndex == len(hint) {
    			return true
    		}
    
    		if group[i] != hint[hintIndex] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (binaryLittleEndian) Uint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue8836.go

    // license that can be found in the LICENSE file.
    
    // Checking that line number is correct in error message.
    
    package main
    
    type Cint int
    
    func foobar(*Cint, Cint, Cint, *Cint)
    
    func main() {
    	a := Cint(1)
    
    	foobar(
    		&a,
    		0,
    		0,
    		42, // ERROR ".*"
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 381 bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanBuildFailureHintIntegrationTest.groovy

            fixture.publishDummyPlugin(executer)
        }
    
        def "does not render hint for successful build without applied plugin"() {
            given:
            buildFile << """
                task $DUMMY_TASK_NAME
            """
    
            when:
            succeeds(DUMMY_TASK_NAME)
    
            then:
            result.assertNotOutput(SCAN)
        }
    
        def "renders hint for failing build without applied plugin and #description"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. hack/golangci-hints.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
         * @return The hint about the source of the problem or an empty string if unknown, never {@code null}.
         */
        String getSource();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which the settings were read.
         *
         * @return The hint about the source of the problem or an empty string if unknown, never {@code null}.
         */
        String getSource();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/topology_manager.go

    	// concrete resource allocations in terms of NUMA locality hints. Each hint
    	// is optionally marked "preferred" and indicates the set of NUMA nodes
    	// involved in the hypothetical allocation. The topology manager calls
    	// this function for each hint provider, and merges the hints to produce
    	// a consensus "best" hint. The hint providers may subsequently query the
    	// topology manager to influence actual resource assignment.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Origin.java

        }
    
        public abstract void handleInvalidValue(String value, String hint);
    
        public void handleInvalidValue(String value) {
            handleInvalidValue(value, null);
        }
    
        String hintMessage(String hint) {
            if (TextUtil.isBlank(hint)) {
                return "";
            }
            return String.format(" (%s)", hint);
        }
    
        private static class GradlePropertyOrigin extends Origin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. hack/verify-shellcheck.sh

    # disabled lints
    disabled=(
      # this lint disallows non-constant source, which we use extensively without
      # any known bugs
      1090
      # this lint warns when shellcheck cannot find a sourced file
      # this wouldn't be a bad idea to warn on, but it fails on lots of path
      # dependent sourcing, so just disable enforcing it
      1091
      # this lint prefers command -v to which, they are not the same
      2230
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top