Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 323 for relabel (0.13 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. 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)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                let revLabel;
                if (item.series.label === executionLabel.branch) {
                    revLabel = 'rev: ' + renderCommitIds(executionLabel.commits) + '/' + executionLabel.branch;
                } else {
                    revLabel = 'Version: ' + item.series.label;
                }
                const text = revLabel + ', date: ' + executionLabel.date + ', ' + label + ': ' + item.datapoint[1] + unit;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. releasenotes/notes/destination-cluster-stats-label.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 29373
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 04 16:33:51 UTC 2021
    - 198 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/metrics/testutil_test.go

    	}
    
    	for _, mf := range metrics {
    		if mf.GetName() == name {
    			for _, metric := range mf.GetMetric() {
    				if testutil.LabelsMatch(metric, expectedLabels) {
    					gotLabelCount := len(metric.GetLabel())
    					wantLabelCount := len(expectedLabels)
    					if wantLabelCount != gotLabelCount {
    						t.Errorf("Got metric with %d labels, but wanted %d labels. Wanted %#+v for %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 24 04:26:43 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  6. pkg/controller/apis/config/types.go

    	// CSRSigningController related features.
    	CSRSigningController csrsigningconfig.CSRSigningControllerConfiguration
    	// DaemonSetControllerConfiguration holds configuration for DaemonSetController
    	// related features.
    	DaemonSetController daemonconfig.DaemonSetControllerConfiguration
    	// DeploymentControllerConfiguration holds configuration for
    	// DeploymentController related features.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

    John Howard <******@****.***> 1717022463 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            Vertex(String label) {
                this.label = label;
            }
    
            String getLabel() {
                return label;
            }
    
            List<Vertex> getChildren() {
                return children;
            }
    
            List<Vertex> getParents() {
                return parents;
            }
        }
    
        static class CycleDetectedException extends RuntimeException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Container.puml

    !define Container(e_alias, e_label, e_techn) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<container>> as e_alias
    !define Container(e_alias, e_label, e_techn, e_descr) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<container>> as e_alias
    
    ' Boundaries
    ' ##################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. releasenotes/notes/remove-istio-io-rev-label.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33447
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 211 bytes
    - Viewed (0)
Back to top