Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 830 for label23 (0.2 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. 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)
  9. src/internal/types/testdata/check/labels.go

    // This file is a modified concatenation of the files
    // $GOROOT/test/label.go and $GOROOT/test/label1.go.
    
    package labels
    
    var x int
    
    func f0() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	for {
    	}
    L2 /* ERROR "label L2 declared and not used" */ :
    	select {
    	}
    L3 /* ERROR "label L3 declared and not used" */ :
    	switch {
    	}
    L4 /* ERROR "label L4 declared and not used" */ :
    	if true {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/mips64.s

    // BEQ/BNE
    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label1:
    	BEQ	R1, 1(PC)	// BEQ R1, 1(PC)	// 10200001
    	BEQ	R1, label1	// BEQ R1, 18		// 1020fffd
    
    //	LBRA rreg ',' sreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label2:
    	BEQ	R1, R2, 1(PC)	// BEQ R1, R2, 1(PC)	// 10220001
    	BEQ	R1, R2, label2	// BEQ R1, R2, 20	// 1022fffd
    
    //
    // other integer conditional branch
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top