Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for nodePath (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    // Data is the interface to use for kubeadm upgrade node phases.
    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    	InitCfg() *kubeadmapi.InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

    import org.gradle.internal.declarativedsl.dom.UnsupportedSyntax
    import org.gradle.internal.declarativedsl.dom.UnsupportedSyntaxCause
    import org.gradle.internal.declarativedsl.dom.data.NodeData
    import org.gradle.internal.declarativedsl.dom.data.ValueData
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.Block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    	NodeRange                      // A range action.
    	NodeString                     // A string constant.
    	NodeTemplate                   // A template invocation action.
    	NodeVariable                   // A $ variable.
    	NodeWith                       // A with action.
    	NodeComment                    // A comment.
    	NodeBreak                      // A break action.
    	NodeContinue                   // A continue action.
    )
    
    // Nodes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func tileHash(data []byte) Hash {
    	if len(data) == 0 {
    		panic("bad math in tileHash")
    	}
    	if len(data) == HashSize {
    		var h Hash
    		copy(h[:], data)
    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    // NewTiles returns the coordinates of the tiles of height h ≥ 1
    // that must be published when publishing from a tree of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	requestFilterDuration.WithContext(ctx).WithLabelValues(name).Observe(elapsed.Seconds())
    }
    
    func RecordTimestampComparisonLatency(codePath string, elapsed time.Duration) {
    	requestTimestampComparisonDuration.WithLabelValues(codePath).Observe(elapsed.Seconds())
    }
    
    func RecordRequestPostTimeout(source string, status string) {
    	requestPostTimeoutTotal.WithLabelValues(source, status).Inc()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    	case *parse.TemplateNode:
    		s.walkTemplate(dot, node)
    	case *parse.TextNode:
    		if _, err := s.wr.Write(node.Text); err != nil {
    			s.writeError(err)
    		}
    	case *parse.WithNode:
    		s.walkIfOrWith(parse.NodeWith, dot, node.Pipe, node.List, node.ElseList)
    	default:
    		s.errorf("unknown node: %s", node)
    	}
    }
    
    // walkIfOrWith walks an 'if' or 'with' node. The two control structures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. architecture/ambient/ztunnel.md

    If it is allowed, we will forward to the target destination.
    
    #### Hairpin
    
    In the case that the destination has a waypoint, that waypoint must have been bypassed to reach the inbound passthrough codepath.
    How we handle this is [under discussion](https://docs.google.com/document/d/1uM1c3zzoehiijh1ZpZuJ1-SzuVVupenv8r5yuCaFshs/edit#heading=h.dwbqvwmg6ud3).
    
    ### Inbound
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    	// (We can't return an error, as this code is also used via
    	// ServeHTTP -> ReadRequest -> Parse, which is arguably a
    	// different URL parsing context, but currently shares the
    	// same codepath)
    	{
    		"///threeslashes",
    		&URL{
    			Path: "///threeslashes",
    		},
    		"",
    	},
    	{
    		"http://user:******@****.***",
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	default:
    		return false
    	}
    
    	if argLen > sys.ExecArgLengthLimit {
    		return true
    	}
    
    	// On the Go build system, use response files about 10% of the
    	// time, just to exercise this codepath.
    	isBuilder := os.Getenv("GO_BUILDER_NAME") != ""
    	if isBuilder && rand.Intn(10) == 0 {
    		return true
    	}
    
    	return false
    }
    
    // encodeArg encodes an argument for response file writing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NodePipe", Const, 0},
    		{"NodeRange", Const, 0},
    		{"NodeString", Const, 0},
    		{"NodeTemplate", Const, 0},
    		{"NodeText", Const, 0},
    		{"NodeType", Type, 0},
    		{"NodeVariable", Const, 0},
    		{"NodeWith", Const, 0},
    		{"NumberNode", Type, 0},
    		{"NumberNode.Complex128", Field, 0},
    		{"NumberNode.Float64", Field, 0},
    		{"NumberNode.Int64", Field, 0},
    		{"NumberNode.IsComplex", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top