Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 516 for beginning (0.23 sec)

  1. src/syscall/mkall.sh

    # a new architecture/operating system combination requires
    # some manual effort, though there are tools that automate
    # much of the process.  The auto-generated files have names
    # beginning with z.
    #
    # This script runs or (given -n) prints suggested commands to generate z files
    # for the current system.  Running those commands is not automatic.
    # This script is documentation more than anything else.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/pos.go

    // relative to pos, which is the position of the character immediately following
    // the comment containing the line directive. For a directive in a line comment,
    // that position is the beginning of the next line (i.e., the newline character
    // belongs to the line comment).
    func NewLineBase(pos Pos, filename string, trimmed bool, line, col uint) *PosBase {
    	return &PosBase{pos, filename, sat32(line), sat32(col), trimmed}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseModel.java

            this.autoBuildTasks.add(autoBuildTasks);
        }
    
        /**
         * Adds path variables to be used for replacing absolute paths in classpath entries.
         * <p>
         * If the beginning of the absolute path of a library or other path-related element matches a value of a variable,
         * a variable entry is used. The matching part of the library path is replaced with the variable name.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/text/scanner/scanner.go

    			// save away token text if any
    			if s.tokPos >= 0 {
    				s.tokBuf.Write(s.srcBuf[s.tokPos:s.srcPos])
    				s.tokPos = 0
    				// s.tokEnd is set by Scan()
    			}
    			// move unread bytes to beginning of buffer
    			copy(s.srcBuf[0:], s.srcBuf[s.srcPos:s.srcEnd])
    			s.srcBufOffset += s.srcPos
    			// read more bytes
    			// (an io.Reader must return io.EOF when it reaches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/base/timings.go

    }
    
    func (t *Timings) append(labels []string, start bool) {
    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    
    // Start marks the beginning of a new phase and implicitly stops the previous phase.
    // The phase name is the colon-separated concatenation of the labels.
    func (t *Timings) Start(labels ...string) {
    	t.append(labels, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/go/ast/import.go

    	endLine := lineAt(fset, endSpecs)
    	endFile := fset.File(endSpecs)
    	var end token.Pos
    	if endLine == endFile.LineCount() {
    		end = endSpecs
    	} else {
    		end = endFile.LineStart(endLine + 1) // beginning of next line
    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    		if g.End() >= end {
    			break
    		}
    		// g.End() < end
    		if beg <= g.Pos() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    // b must point to the beginning of a heap object or an oblet.
    // scanobject consults the GC bitmap for the pointer mask and the
    // spans for the size of the object.
    //
    //go:nowritebarrier
    func scanobject(b uintptr, gcw *gcWork) {
    	// Prefetch object before we scan it.
    	//
    	// This will overlap fetching the beginning of the object with initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. pilot/pkg/security/trustdomain/bundle.go

    	TrustDomains []string
    }
    
    // NewBundle returns a new trust domain bundle.
    func NewBundle(trustDomain string, trustDomainAliases []string) Bundle {
    	return Bundle{
    		// Put the new trust domain to the beginning of the list to avoid changing existing tests.
    		TrustDomains: append([]string{trustDomain}, trustDomainAliases...),
    	}
    }
    
    // ReplaceTrustDomainAliases checks the existing principals and returns a list of new principals
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    If you explicitly enable file system watching, Gradle retains information about unsupported file systems between builds.
    
    == Logging
    
    To view information about Virtual File System (VFS) changes at the beginning and end of a build, enable verbose VFS logging.
    
    Set the `org.gradle.vfs.verbose` Daemon option to `true` to enable verbose logging.
    
    You can do this on the command line with the following command:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    				l.line(l.b[i:e])
    			}
    			i = e
    		}
    
    		// Whatever's left in l.b is a line fragment.
    		if i == 0 && len(l.b) == cap(l.b) {
    			// The whole buffer is a fragment.
    			// Emit it as the beginning (or continuation) of a partial line.
    			t := trimUTF8(l.b)
    			l.part(l.b[:t])
    			l.b = l.b[:copy(l.b, l.b[t:])]
    			l.mid = true
    		}
    
    		// There's room for more input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top