Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 465 for gint (0.04 sec)

  1. 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)
  2. docs/de/docs/features.md

    * Dies ermöglicht auch automatische **Client-Code-Generierung** in vielen Sprachen.
    
    ### Automatische Dokumentation
    
    Interaktive API-Dokumentation und erkundbare Web-Benutzeroberflächen. Da das Framework auf OpenAPI basiert, gibt es mehrere Optionen, zwei sind standardmäßig vorhanden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/cm/topologymanager/policy_restricted.go

    	return &restrictedPolicy{bestEffortPolicy{numaInfo: numaInfo, opts: opts}}
    }
    
    func (p *restrictedPolicy) Name() string {
    	return PolicyRestricted
    }
    
    func (p *restrictedPolicy) canAdmitPodResult(hint *TopologyHint) bool {
    	return hint.Preferred
    }
    
    func (p *restrictedPolicy) Merge(providersHints []map[string][]TopologyHint) (TopologyHint, bool) {
    	filteredHints := filterProvidersHints(providersHints)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. docs/de/docs/async.md

    * **Deep Learning**: Dies ist ein Teilgebiet des maschinellen Lernens, daher gilt das Gleiche. Es ist nur so, dass es nicht eine einzige Tabelle mit Zahlen zum Multiplizieren gibt, sondern eine riesige Menge davon, und in vielen Fällen verwendet man einen speziellen Prozessor, um diese Modelle zu erstellen und / oder zu verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/docker.md

    Und es gibt einen öffentlichen <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker <abbr title="Umschlagsplatz">Hub</abbr></a> mit vorgefertigten **offiziellen Containerimages** für viele Tools, Umgebungen, Datenbanken und Anwendungen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
Back to top