Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for labelFor (0.13 sec)

  1. src/runtime/pprof/pprof_test.go

    	labels := labelMap{"label": "value"}
    	labelStr := "\n# labels: " + labels.String()
    	selfLabel := labelMap{"self-label": "self-value"}
    	selfLabelStr := "\n# labels: " + selfLabel.String()
    	fingLabel := labelMap{"fing-label": "fing-value"}
    	fingLabelStr := "\n# labels: " + fingLabel.String()
    	orderedPrefix := []string{
    		"\n50 @ ",
    		"\n44 @", labelStr,
    		"\n40 @",
    		"\n36 @", labelStr,
    		"\n10 @",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.labelPod(t, "pod1", testNS, map[string]string{constants.AmbientUseWaypointLabel: "waypoint-sa1"})
    	s.assertEvent(t, s.podXdsName("pod1"))
    	// assert that we're using the correct waypoint for pod1
    	s.assertWaypointAddressForPod(t, "pod1", "10.0.0.2")
    
    	// remove the use-waypoint clabel from pod1
    	s.labelPod(t, "pod1", testNS, map[string]string{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	p.inRhs = old
    	return x
    }
    
    // ----------------------------------------------------------------------------
    // Statements
    
    // Parsing modes for parseSimpleStmt.
    const (
    	basic = iota
    	labelOk
    	rangeOk
    )
    
    // parseSimpleStmt returns true as 2nd result if it parsed the assignment
    // of a range clause (with mode == rangeOk). The returned statement is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    func (p *parser) parseRhs() ast.Expr {
    	return p.parseExpr(false)
    }
    
    // ----------------------------------------------------------------------------
    // Statements
    
    func (p *parser) parseSimpleStmt(labelOk bool) ast.Stmt {
    	if p.trace {
    		defer un(trace(p, "SimpleStmt"))
    	}
    
    	x := p.parseLhsList()
    
    	switch p.tok {
    	case
    		token.DEFINE, token.ASSIGN, token.ADD_ASSIGN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		// TODO(#89477): no earlier than 1.22: drop the beta labels if they differ from the GA labels
    		primaryKey:            v1.LabelOSStable,
    		secondaryKey:          kubeletapis.LabelOS,
    		ensureSecondaryExists: true,
    	},
    	{
    		// Reconcile the beta and the stable arch label using the stable label as the source of truth.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Removed admission plugin PersistentVolumeLabel. Please use https://github.com/kubernetes-sigs/cloud-pv-admission-labeler instead if you need a similar functionality. ([#124505](https://github.com/kubernetes/kubernetes/pull/124505), [@jsafrane](https://github.com/jsafrane)) [SIG API Machinery, Auth and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top