Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,088 for label23 (0.16 sec)

  1. src/cmd/internal/obj/loong64/asm_test.go

    	fmt.Fprintln(buf, "BEQ R5, R6, label18")
    	fmt.Fprintln(buf, "BNE R5, R6, label18")
    	fmt.Fprintln(buf, "BGE R5, R6, label18")
    
    	fmt.Fprintln(buf, "BGEU R5, R6, label18")
    	fmt.Fprintln(buf, "BLTU R5, R6, label18")
    
    	fmt.Fprintln(buf, "BLEZ R5, label18")
    	fmt.Fprintln(buf, "BGEZ R5, label18")
    	fmt.Fprintln(buf, "BLTZ R5, label18")
    	fmt.Fprintln(buf, "BGTZ R5, label18")
    
    	fmt.Fprintln(buf, "BFPT label23")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    		mergedMap[k] = v
    	}
    	for k, v := range labels2 {
    		mergedMap[k] = v
    	}
    	return mergedMap
    }
    
    // Equals returns true if the given maps are equal
    func Equals(labels1, labels2 Set) bool {
    	if len(labels1) != len(labels2) {
    		return false
    	}
    
    	for k, v := range labels1 {
    		value, ok := labels2[k]
    		if !ok {
    			return false
    		}
    		if value != v {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/labels.go

    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *syntax.LabeledStmt) {
    	name := s.Label.Value
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*syntax.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K 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. src/go/types/labels.go

    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *ast.LabeledStmt) {
    	name := s.Label.Name
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*ast.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    // gotoTarget returns the labeled statement in the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. operator/pkg/compare/compare_test.go

     namespace: istio-system
     labels:
       - label1
       - label2
       - label3
    `,
    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
     name: istio-ingressgateway
     namespace: istio-system
     labels:
       - label1
       - label5
       - label6
    `,
    			want: `metadata:
      labels:
        '[#1]': label2 -> label5
        '[#2]': label3 -> label6
    `,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.cc

          static_cast<void*>(gauge->gauge->GetCell(label1, label2)));
    }
    
    TFE_MonitoringStringGauge3* TFE_MonitoringNewStringGauge3(
        const char* name, TF_Status* status, const char* description,
        const char* label1, const char* label2, const char* label3) {
      auto* result = new TFE_MonitoringStringGauge3(
          {name, description, label1, label2, label3});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  8. pkg/util/labels/labels.go

    	for key, value := range labels {
    		newLabels[key] = value
    	}
    	delete(newLabels, labelKey)
    	return newLabels
    }
    
    // AddLabel returns a map with the given key and value added to the given map.
    func AddLabel(labels map[string]string, labelKey, labelValue string) map[string]string {
    	if labelKey == "" {
    		// Don't need to add a label.
    		return labels
    	}
    	if labels == nil {
    		labels = make(map[string]string)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/pprof/label.go

    	for k, v := range parentLabels {
    		childLabels[k] = v
    	}
    	for _, label := range labels.list {
    		childLabels[label.key] = label.value
    	}
    	return context.WithValue(ctx, labelContextKey{}, &childLabels)
    }
    
    // Labels takes an even number of strings representing key-value pairs
    // and makes a [LabelSet] containing them.
    // A label overwrites a prior label with the same key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top