Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,064 for NCases (0.08 sec)

  1. src/internal/abi/switch.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    type InterfaceSwitch struct {
    	Cache  *InterfaceSwitchCache
    	NCases int
    
    	// Array of NCases elements.
    	// Each case must be a non-empty interface type.
    	Cases [1]*InterfaceType
    }
    
    type InterfaceSwitchCache struct {
    	Mask    uintptr                      // mask for index. Must be a power of 2 minus 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_trieval.go
    
    // Package cases provides general and language-specific case mappers.
    package cases // import "golang.org/x/text/cases"
    
    import (
    	"golang.org/x/text/language"
    	"golang.org/x/text/transform"
    )
    
    // References:
    // - Unicode Reference Manual Chapter 3.13, 4.2, and 5.18.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
            this.id = id;
            this.phases = phases;
            this.defaultPhases = defaultPhases;
        }
    
        public Lifecycle(org.apache.maven.api.Lifecycle lifecycle) {
            this.lifecycle = lifecycle;
            this.id = lifecycle.id();
            this.phases = lifecycle.phases().stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/policy_best_effort_test.go

    	numaInfo := commonNUMAInfoFourNodes()
    	policy := &bestEffortPolicy{numaInfo: numaInfo}
    
    	tcases := commonPolicyMergeTestCases(numaInfo.Nodes)
    	tcases = append(tcases, policy.mergeTestCases(numaInfo.Nodes)...)
    	tcases = append(tcases, policy.mergeTestCasesNoPolicies(numaInfo.Nodes)...)
    
    	testPolicyMerge(policy, tcases, t)
    }
    
    func TestPolicyBestEffortMergeClosestNUMA(t *testing.T) {
    	numaInfo := commonNUMAInfoEightNodes()
    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. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    		...
    	...
    
    Phases are designed to be reusable across different kubeadm workflows thus allowing
    e.g. reuse of phase certs in both kubeadm init and kubeadm join --control-plane workflows.
    
    Each workflow can be defined and managed using a Runner, that will run all
    the phases according to the given order; nested phases will be executed immediately
    after their parent phase.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy_single_numa_node_test.go

    	numaInfo := commonNUMAInfoFourNodes()
    	policy := singleNumaNodePolicy{numaInfo: numaInfo, opts: PolicyOptions{}}
    
    	tcases := commonPolicyMergeTestCases(numaInfo.Nodes)
    	tcases = append(tcases, policy.mergeTestCases(numaInfo.Nodes)...)
    
    	testPolicyMerge(&policy, tcases, t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/lifecycles.apt.vm

      <<<default>>> lifecycle is defined only with phases, <<without>> any associated plugin binding:
      plugins bindings for this lifecycle are {{{./default-bindings.html}defined separately for each packaging}}:
    
    %{snippet|id=default|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java}
    
    * <<<clean>>> Lifecycle
    
      <<<clean>>> lifecycle phases are defined with their plugins bindings:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 08 14:57:39 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy_none_test.go

    limitations under the License.
    */
    
    package topologymanager
    
    import (
    	"testing"
    )
    
    func TestPolicyNoneName(t *testing.T) {
    	tcases := []struct {
    		name     string
    		expected string
    	}{
    		{
    			name:     "New None Policy",
    			expected: "none",
    		},
    	}
    	for _, tc := range tcases {
    		policy := NewNonePolicy()
    		if policy.Name() != tc.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 03 17:13:28 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    					}
    				}
    			}
    
    			leases, err := fakeReconciler.ListLeases()
    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    			// sort for comparison
    			sort.Strings(leases)
    			sort.Strings(test.expectLeases)
    			if !reflect.DeepEqual(leases, test.expectLeases) {
    				t.Errorf("expected %v got: %v", test.expectLeases, leases)
    			}
    
    			for _, server := range test.servers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"github.com/pkg/errors"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	markcontrolplanephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/markcontrolplane"
    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top