Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 475 for qint (0.21 sec)

  1. hack/tools/tools.go

    package tools
    
    import (
    	// linting tools
    	_ "github.com/aojea/sloppy-netparser"
    	_ "github.com/client9/misspell/cmd/misspell"
    	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    	_ "github.com/jcchavezs/porto/cmd/porto"
    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    		request                     int
    		devices                     []pluginapi.Device
    		allocatedDevices            []string
    		hint                        topologymanager.TopologyHint
    		getPreferredAllocationFunc  func(available, mustInclude []string, size int) (*pluginapi.PreferredAllocationResponse, error)
    		expectedPreferredAllocation []string
    		expectedAlignment           map[int]int
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  3. security/pkg/pki/testdata/multilevelpki/ecc-int-cert-chain.pem

    jacob-delgado <******@****.***> 1588995233 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 09 03:33:53 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. hack/make-rules/verify.sh

        "verify-vendor-licenses.sh"               # runs in separate dependencies job
        )
    fi
    
    # Exclude golangci-lint if requested, for example in pull-kubernetes-verify.
    if [[ ${EXCLUDE_GOLANGCI_LINT:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-golangci-lint.sh"              # runs in separate pull-kubernetes-verify-lint
        )
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy_none_test.go

    func TestPolicyNoneCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: true,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 03 17:13:28 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

     * thrown or a simple string message. In addition, a problem carries a hint about its source.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/policy_best_effort_test.go

    func TestPolicyBestEffortCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: true,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy_test.go

    )
    
    type policyMergeTestCase struct {
    	name     string
    	hp       []HintProvider
    	expected TopologyHint
    }
    
    func commonPolicyMergeTestCases(numaNodes []int) []policyMergeTestCase {
    	return []policyMergeTestCase{
    		{
    			name: "Two providers, 1 hint each, same mask, both preferred 1/2",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource1": {
    							{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    //
    // If the first token of the hint matches the first token of the
    // line, the new line is added at the end of the block containing hint,
    // extracting hint into a new block if it is not yet in one.
    //
    // If the hint is non-nil buts its first token does not match,
    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_network_linux.go

    		}
    	}
    }
    
    // syncIPTablesRules ensures the KUBE-IPTABLES-HINT chain exists, and the martian packet
    // protection rule is installed.
    func (kl *Kubelet) syncIPTablesRules(iptClient utiliptables.Interface) bool {
    	// Create hint chain so other components can see whether we are using iptables-legacy
    	// or iptables-nft.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top