Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for begins (0.12 sec)

  1. src/cmd/doc/main.go

    //
    // The first item in this list that succeeds is the one whose documentation
    // is printed. If there is a symbol but no package, the package in the current
    // directory is chosen. However, if the argument begins with a capital
    // letter it is always assumed to be a symbol in the current directory.
    //
    // Two arguments:
    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    - The last line contains the end-comment delimiter ( `*/`).
    
    So lines won't wrap, limit any doc-comment lines to 120 characters.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof.go

    // and controls where the stack trace begins. Passing skip=0 begins the
    // trace in the function calling Add. For example, given this
    // execution stack:
    //
    //	Add
    //	called from rpc.NewClient
    //	called from mypkg.Run
    //	called from main.main
    //
    // Passing skip=0 begins the stack trace at the call to Add inside rpc.NewClient.
    // Passing skip=1 begins the stack trace at the call to NewClient inside mypkg.Run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    		validateDeletion ValidateObjectFunc, cachedExistingObject runtime.Object) error
    
    	// Watch begins watching the specified key. Events are decoded into API objects,
    	// and any items selected by 'p' are sent down to returned watch.Interface.
    	// resourceVersion may be used to specify what version to begin watching,
    	// which should be the current resourceVersion, and no longer rv+1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top