Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Bind1 (0.04 sec)

  1. pkg/scheduler/profile/profile_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    )
    
    var fakeRegistry = frameworkruntime.Registry{
    	"QueueSort": newFakePlugin("QueueSort"),
    	"Bind1":     newFakePlugin("Bind1"),
    	"Bind2":     newFakePlugin("Bind2"),
    	"Another":   newFakePlugin("Another"),
    }
    
    func TestNewMap(t *testing.T) {
    	cases := []struct {
    		name    string
    		cfgs    []config.KubeSchedulerProfile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

                return;
            }
            int ind1 = name.indexOf(':');
            int ind2 = name.lastIndexOf(':');
    
            if (ind1 == -1 || ind2 == -1) {
                return;
            }
    
            this.groupId = name.substring(0, ind1);
            if (ind1 == ind2) {
                this.artifactId = name.substring(ind1 + 1);
            } else {
                this.artifactId = name.substring(ind1 + 1, ind2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/helpers_test.go

    	"istio.io/istio/pkg/config/validation"
    )
    
    // K8SCollection1 describes the collection k8s/collection1
    var K8SCollection1 = r2.Builder{
    	Group:         "testdata.istio.io",
    	Kind:          "Kind1",
    	Plural:        "Kind1s",
    	Version:       "v1alpha1",
    	Proto:         "google.protobuf.Struct",
    	ReflectType:   reflect.TypeOf(&structpb.Struct{}).Elem(),
    	ProtoPackage:  "github.com/gogo/protobuf/types",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/analyze_test.go

    	fn:     func(_ analysis.Context) {},
    	inputs: []config.GroupVersionKind{},
    }
    
    var (
    	// YamlN1I1V1 is a testing resource in Yaml form
    	YamlN1I1V1 = `
    apiVersion: testdata.istio.io/v1alpha1
    kind: Kind1
    metadata:
      namespace: n1
      name: i1
    spec:
      n1_i1: v1
    `
    	blankCombinedAnalyzer = analysis.Combine("testCombined", blankTestAnalyzer)
    )
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top