Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 422 for begins (2.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		peeraddress:      peeraddress,
    		endpointInterval: endpointInterval,
    		client:           client,
    		stopCh:           make(chan struct{}),
    	}
    }
    
    // Start begins the peer endpoint lease reconciler loop that must exist for bootstrapping
    // a cluster.
    func (c *PeerEndpointLeaseController) Start(stopCh <-chan struct{}) {
    	localStopCh := make(chan struct{})
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

        this.name = name;
        this.parts = parts;
      }
    
      /**
       * The index in the {@link #parts()} list at which the public suffix begins. For example, for the
       * domain name {@code myblog.blogspot.co.uk}, the value would be 1 (the index of the {@code
       * blogspot} part). The value is negative (specifically, {@link #NO_SUFFIX_FOUND}) if no public
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    	// interfaceNamePrefix is an interface name prefix. When DetectLocalMode is set to
    	// LocalModeInterfaceNamePrefix, kube-proxy will consider traffic to be local if
    	// it originates from any interface whose name begins with this prefix.
    	InterfaceNamePrefix string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // KubeProxyConfiguration contains everything necessary to configure the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InternetDomainName.java

        this.name = name;
        this.parts = parts;
      }
    
      /**
       * The index in the {@link #parts()} list at which the public suffix begins. For example, for the
       * domain name {@code myblog.blogspot.co.uk}, the value would be 1 (the index of the {@code
       * blogspot} part). The value is negative (specifically, {@link #NO_SUFFIX_FOUND}) if no public
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. src/regexp/regexp.go

    }
    
    // Compile parses a regular expression and returns, if successful,
    // a [Regexp] object that can be used to match against text.
    //
    // When matching against text, the regexp returns a match that
    // begins as early as possible in the input (leftmost), and among those
    // it chooses the one that a backtracking search would have found first.
    // This so-called leftmost-first matching is the same semantics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/cmd/internal/archive/archive.go

    			r.skip(1)
    		}
    	}
    	return nil
    }
    
    // parseObject parses a single Go object file.
    // The object file consists of a textual header ending in "\n!\n"
    // and then the part we want to parse begins.
    // The format of that part is defined in a comment at the top
    // of cmd/internal/goobj/objfile.go.
    func (r *objReader) parseObject(o *GoObj, size int64) error {
    	h := make([]byte, 0, 256)
    	var c1, c2, c3 byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/embed/embed.go

    //	//go:embed image template html/index.html
    //	var content embed.FS
    //
    // The difference is that ‘image/*’ embeds ‘image/.tempfile’ while ‘image’ does not.
    // Neither embeds ‘image/dir/.tempfile’.
    //
    // If a pattern begins with the prefix ‘all:’, then the rule for walking directories is changed
    // to include those files beginning with ‘.’ or ‘_’. For example, ‘all:image’ embeds
    // both ‘image/.tempfile’ and ‘image/dir/.tempfile’.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    			// process function literals in init expressions before scope changes
    			check.processDelayed(top)
    
    			// spec: "The scope of a constant or variable identifier declared
    			// inside a function begins at the end of the ConstSpec or VarSpec
    			// (ShortVarDecl for short variable declarations) and ends at the
    			// end of the innermost containing block."
    			scopePos := syntax.EndPos(s)
    			for i, name := range s.NameList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/net/http/fs.go

    	if err != nil {
    		msg, code := toHTTPError(err)
    		serveError(w, msg, code)
    		return
    	}
    
    	if redirect {
    		// redirect to canonical path: / at end of directory url
    		// r.URL.Path always begins with /
    		url := r.URL.Path
    		if d.IsDir() {
    			if url[len(url)-1] != '/' {
    				localRedirect(w, r, path.Base(url)+"/")
    				return
    			}
    		} else if url[len(url)-1] == '/' {
    			base := path.Base(url)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/reflect/abi.go

    	//
    	// For instance, if this abiSeq represents 3 arguments
    	// passed to a function, then the 2nd argument's steps
    	// begin at steps[valueStart[1]].
    	//
    	// Because reflect accepts Go arguments in distinct
    	// Values and each Value is stored separately, each abiStep
    	// that begins a new argument will have its offset
    	// field == 0.
    	steps      []abiStep
    	valueStart []int
    
    	stackBytes   uintptr // stack space used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top