Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,786 for labels0 (0.15 sec)

  1. .github/labels.json

    {
      "labels": {
        "critical": {
          "name": "type:critical",
          "colour": "#E84137",
          "description": "critical questions"
        },
        "question": {
          "name": "type:question",
          "colour": "#EDEDED",
          "description": "general questions"
        },
        "feature": {
          "name": "type:feature_request",
          "colour": "#43952A",
          "description": "feature request"
        },
        "invalid_question": {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 19 03:49:03 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. pkg/test/framework/label/labels.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package label
    
    const (
    	// Postsubmit indicates that the test should be run as part of a postsubmit run only.
    	Postsubmit Instance = "postsubmit"
    
    	// CustomSetup indicates that the test requires a custom Istio installation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    	tests := []struct {
    		labels1  map[string]string
    		labels2  map[string]string
    		conflict bool
    	}{
    		{
    			labels1:  map[string]string{},
    			labels2:  map[string]string{},
    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"infra": "true"},
    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/util/label/label.go

    	LabelTopologyRegion  = "topology.kubernetes.io/region"
    )
    
    // AugmentLabels adds additional labels to the those provided.
    func AugmentLabels(in labels.Instance, clusterID cluster.ID, locality, k8sNode string, networkID network.ID) labels.Instance {
    	// Copy the original labels to a new map.
    	out := make(labels.Instance, len(in)+6)
    	for k, v := range in {
    		out[k] = v
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. test/label1.go

    		if x == 13 {
    			break L4 // ERROR "invalid break label .*L4"
    		}
    		if x == 14 {
    			continue L4 // ERROR "invalid continue label .*L4|continue is not in a loop$"
    		}
    		if x == 15 {
    			goto L4
    		}
    	}
    
    L5:
    	f2()
    	if x == 16 {
    		break L5 // ERROR "invalid break label .*L5"
    	}
    	if x == 17 {
    		continue L5 // ERROR "invalid continue label .*L5|continue is not in a loop$"
    	}
    	if x == 18 {
    		goto L5
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  6. releasenotes/notes/gw-allow-labels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 41057
      - 43585
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 16:57:46 UTC 2023
    - 204 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

              medium: Memory
            name: istio-envoy
          - emptyDir: {}
            name: istio-data
          - downwardAPI:
              items:
              - fieldRef:
                  fieldPath: metadata.labels
                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. test/ken/label.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test goto and labels.
    
    package main
    
    func main() {
    	i := 0
    	if false {
    		goto gogoloop
    	}
    	if false {
    		goto gogoloop
    	}
    	if false {
    		goto gogoloop
    	}
    	goto gogoloop
    
    	// backward declared
    loop:
    	i = i + 1
    	if i < 100 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 439 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels.go

    	if labelKey == "" {
    		// Don't need to add a label.
    		return selector
    	}
    	if selector.MatchLabels == nil {
    		selector.MatchLabels = make(map[string]string)
    	}
    	selector.MatchLabels[labelKey] = labelValue
    	return selector
    }
    
    // SelectorHasLabel checks if the given selector contains the given label key in its MatchLabels
    func SelectorHasLabel(selector *LabelSelector, labelKey string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. releasenotes/notes/cluster-labels-prometheus.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 30036
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 282 bytes
    - Viewed (0)
Back to top