Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 581 for begins (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * <ol>
       *   <li>execution will not stop until the task queue is empty.
       *   <li>tasks will begin execution with the thread marked as not interrupted - any interruption
       *       applies only to the task that was running at the point of interruption.
       *   <li>if the thread was interrupted before the SequentialExecutor's worker begins execution,
       *       the interrupt will be restored to the thread after it completes so that its {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/cmd/go/internal/search/search.go

    	match := pkgpattern.MatchPattern(slashPattern)
    
    	// Find directory to begin the scan.
    	// Could be smarter but this one optimization
    	// is enough for now, since ... is usually at the
    	// end of a path.
    	i := strings.Index(cleanPattern, "...")
    	dir, _ := filepath.Split(cleanPattern[:i])
    
    	// pattern begins with ./ or ../.
    	// path.Clean will discard the ./ but not the ../.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. 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)
Back to top