Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,786 for labels0 (0.28 sec)

  1. test/label.go

    // Verify that erroneous labels are caught by the compiler.
    // This set is caught by pass 1.
    // Does not compile.
    
    package main
    
    var x int
    
    func f() {
    L1: // ERROR "label .*L1.* defined and not used"
    	for {
    	}
    L2: // ERROR "label .*L2.* defined and not used"
    	select {}
    L3: // ERROR "label .*L3.* defined and not used"
    	switch {
    	}
    L4: // ERROR "label .*L4.* defined and not used"
    	if true {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. pkg/volume/downwardapi/downwardapi_test.go

    				verifyMapInFile{stepName{"labels"}, labels2},
    			},
    		},
    		{
    			name: "test_write_with_unix_path",
    			files: map[string]string{
    				"these/are/my/labels":        "metadata.labels",
    				"these/are/your/annotations": "metadata.annotations",
    			},
    			podLabels:      labels1,
    			podAnnotations: annotations,
    			steps: []testStep{
    				verifyMapInFile{stepName{"these/are/my/labels"}, labels1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. releasenotes/notes/vm-label.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 32210
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 04:25:19 UTC 2023
    - 220 bytes
    - Viewed (0)
  4. .github/workflows/labeler.yml

    name: "Issue Labeler"
    on:
      issues:
        types: [opened, edited, reopened]
      pull_request:
        types: [opened, edited, reopened]
    
    jobs:
      triage:
        runs-on: ubuntu-latest
        name: Label issues and pull requests
        steps:
          - name: check out
            uses: actions/checkout@v4
    
          - name: labeler
            uses: jinzhu/super-labeler-action@develop
            with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 423 bytes
    - Viewed (0)
  5. pkg/apis/core/v1/helper/helpers_test.go

    			},
    			want: true,
    		},
    		{
    			name: "label does not match MatchLabelExpressions terms",
    			args: args{
    				topologySelectorTerms: []v1.TopologySelectorTerm{
    					{
    						MatchLabelExpressions: []v1.TopologySelectorLabelRequirement{{
    							Key:    "label_1",
    							Values: []string{"label_1_val"},
    						}},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. hack/testdata/deployment-label-change2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx2
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx2
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 377 bytes
    - Viewed (0)
  7. hack/testdata/deployment-label-change1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx1
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx1
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 353 bytes
    - Viewed (0)
  8. hack/testdata/deployment-label-change3.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: invalid
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx3
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 378 bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    	// 3. inject label false
    	// 4. inject label true and revision label
    	// 5. inject label false and revision label
    	// 6. no label
    	// However, we filter out all the disable cases, leaving us with a reasonable number of cases
    	testLabels := []LabelSet{}
    	for _, namespaceLabel := range []klabels.Set{empty, revLabel, legacyLabel, legacyLabelDisabled, legacyAndRevLabel, legacyDisabledAndRevLabel} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/webhook/webhook.go

    		meta.Inputs = append(meta.Inputs, gvk.Service)
    	}
    	return meta
    }
    
    func getNamespaceLabels() []klabels.Set {
    	return []klabels.Set{
    		{},
    		{"istio-injection": "enabled"},
    		{"istio-injection": "disabled"},
    	}
    }
    
    func getObjectLabels() []klabels.Set {
    	return []klabels.Set{
    		{},
    		{"sidecar.istio.io/inject": "true"},
    		{"sidecar.istio.io/inject": "false"},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top