Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 315 for unlabel (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/StatementLabelsIntegrationTest.groovy

        }
    
        def "use of statement label in class inside build script is allowed"() {
            buildFile << """
    class Foo {
      def bar() {
        mylabel:
        def x = 1
      }
    }
            """
    
            expect:
            succeeds("help")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 21 07:18:30 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. hack/testdata/deployment-label-change2.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 377 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    		for _, stmt := range x.List {
    			d.findLabels(stmt)
    		}
    
    	case *ast.BranchStmt:
    		switch x.Tok {
    		case token.GOTO:
    			if x.Label != nil {
    				d.hasGoto[x.Label.Name] = true
    			}
    
    		case token.BREAK:
    			stmt := d.breakTarget
    			if x.Label != nil {
    				stmt = d.labels[x.Label.Name]
    			}
    			if stmt != nil {
    				d.hasBreak[stmt] = true
    			}
    		}
    
    	case *ast.IfStmt:
    		d.findLabels(x.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/dryrun/dryrun.go

    	return nil
    }
    
    // WaitForPodsWithLabel just returns a dummy nil, to indicate that the program should just proceed
    func (w *Waiter) WaitForPodsWithLabel(kvLabel string) error {
    	fmt.Printf("[dryrun] Would wait for the Pods with the label %q in the %s namespace to become Running\n", kvLabel, metav1.NamespaceSystem)
    	return nil
    }
    
    // WaitForPodToDisappear just returns a dummy nil, to indicate that the program should just proceed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. hack/testdata/deployment-label-change3.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 378 bytes
    - Viewed (0)
  6. src/internal/profile/encode.go

    	// repeated Label label = 3
    	func(b *buffer, m message) error {
    		s := m.(*Sample)
    		n := len(s.labelX)
    		s.labelX = append(s.labelX, Label{})
    		return decodeMessage(b, &s.labelX[n])
    	},
    }
    
    func (p Label) decoder() []decoder {
    	return labelDecoder
    }
    
    func (p Label) encode(b *buffer) {
    	encodeInt64Opt(b, 1, p.keyX)
    	encodeInt64Opt(b, 2, p.strX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    		}
    		if matchHide {
    			hm = true
    		}
    		return !matchShow || matchHide
    	}
    	for _, s := range p.Sample {
    		for lab := range s.Label {
    			if matchRemove(lab) {
    				delete(s.Label, lab)
    			}
    		}
    		for lab := range s.NumLabel {
    			if matchRemove(lab) {
    				delete(s.NumLabel, lab)
    			}
    		}
    	}
    	return
    }
    
    // matchesName returns whether the location matches the regular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    	// repeated Label label = 3
    	func(b *buffer, m message) error {
    		s := m.(*Sample)
    		n := len(s.labelX)
    		s.labelX = append(s.labelX, label{})
    		return decodeMessage(b, &s.labelX[n])
    	},
    }
    
    func (p label) decoder() []decoder {
    	return labelDecoder
    }
    
    func (p label) encode(b *buffer) {
    	encodeInt64Opt(b, 1, p.keyX)
    	encodeInt64Opt(b, 2, p.strX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if !exists {
    		// The old label doesn't already exist on the deployment; use the new label
    		return
    	}
    
    	// The old label exists on the deployment; use the old label
    	ti.GatewayNameLabel = constants.DeprecatedGatewayNameLabel
    }
    
    type TemplateInput struct {
    	*gateway.Gateway
    	DeploymentName            string
    	ServiceAccount            string
    	Ports                     []corev1.ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/internal/profile/profile.go

    	Location []*Location
    	Value    []int64
    	Label    map[string][]string
    	NumLabel map[string][]int64
    	NumUnit  map[string][]string
    
    	locationIDX []uint64
    	labelX      []Label
    }
    
    // Label corresponds to Profile.Label
    type Label struct {
    	keyX int64
    	// Exactly one of the two following values must be set
    	strX int64
    	numX int64 // Integer value for this label
    }
    
    // Mapping corresponds to Profile.Mapping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top