Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 383 for maxline (0.25 sec)

  1. src/cmd/compile/internal/ssa/numberlines.go

    			}
    			total += uint64(v.lp.last - v.lp.first)
    			if maxfile < v.f {
    				maxfile = v.f
    			}
    			if minline > v.lp.first {
    				minline = v.lp.first
    			}
    			if maxline < v.lp.last {
    				maxline = v.lp.last
    			}
    		}
    		f.LogStat("SUM_LINE_RANGE", total, "MAXMIN_LINE_RANGE", maxline-minline, "MAXFILE", maxfile, "NFILES", len(entries))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/regexp/syntax/compile.go

    	f.out = makePatchList(f.i << 1)
    
    	// Special cases for exec machine.
    	switch {
    	case flags&FoldCase == 0 && (len(r) == 1 || len(r) == 2 && r[0] == r[1]):
    		i.Op = InstRune1
    	case len(r) == 2 && r[0] == 0 && r[1] == unicode.MaxRune:
    		i.Op = InstRuneAny
    	case len(r) == 4 && r[0] == 0 && r[1] == '\n'-1 && r[2] == '\n'+1 && r[3] == unicode.MaxRune:
    		i.Op = InstRuneAnyNotNL
    	}
    
    	return f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/support.go

    	files map[string]*fileInfo
    }
    
    type fileInfo struct {
    	file     *token.File
    	lastline int
    }
    
    const maxlines = 64 * 1024
    
    func (s *fakeFileSet) pos(file string, line, column int) token.Pos {
    	// TODO(mdempsky): Make use of column.
    
    	// Since we don't know the set of needed file positions, we reserve
    	// maxlines positions per file. We delay calling token.File.SetLines until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/auth/netrc_test.go

    	"reflect"
    	"testing"
    )
    
    var testNetrc = `
    machine incomplete
    password none
    
    machine api.github.com
      login user
      password pwd
    
    machine incomlete.host
      login justlogin
    
    machine test.host
    login user2
    password pwd2
    
    machine oneline login user3 password pwd3
    
    machine ignore.host macdef ignore
      login nobody
      password nothing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 21:11:28 UTC 2019
    - 1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/EvictingQueue.java

      @VisibleForTesting final int maxSize;
    
      private EvictingQueue(int maxSize) {
        checkArgument(maxSize >= 0, "maxSize (%s) must >= 0", maxSize);
        this.delegate = new ArrayDeque<>(maxSize);
        this.maxSize = maxSize;
      }
    
      /**
       * Creates and returns a new evicting queue that will hold up to {@code maxSize} elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/auth/netrc.go

    		for ; i < len(f)-1; i += 2 {
    			// Reset at each "machine" token.
    			// “The auto-login process searches the .netrc file for a machine token
    			// that matches […]. Once a match is made, the subsequent .netrc tokens
    			// are processed, stopping when the end of file is reached or another
    			// machine or a default token is encountered.”
    			switch f[i] {
    			case "machine":
    				l = netrcLine{machine: f[i+1]}
    			case "default":
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

    import org.gradle.api.provider.SetProperty;
    
    /**
     * A mailing list of a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomMailingListSpec
     */
    public interface MavenPomMailingList {
    
        /**
         * The name of this mailing list.
         */
        Property<String> getName();
    
        /**
         * The email address or link that can be used to subscribe to this mailing list.
         */
        Property<String> getSubscribe();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt_test.go

    // gofmtFlags looks for a comment of the form
    //
    //	//gofmt flags
    //
    // within the first maxLines lines of the given file,
    // and returns the flags string, if any. Otherwise it
    // returns the empty string.
    func gofmtFlags(filename string, maxLines int) string {
    	f, err := os.Open(filename)
    	if err != nil {
    		return "" // ignore errors - they will be found later
    	}
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LoggingEvictionListener.java

        private final String cacheId;
        private final int maxSize;
        private final int logInterval;
        private final Logger logger;
        private Cache<Object, Object> cache;
    
        LoggingEvictionListener(String cacheId, int maxSize, Logger logger) {
            this.cacheId = cacheId;
            this.maxSize = maxSize;
            this.logInterval = maxSize / 10;
            this.logger = logger;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/EvictingQueue.java

      @VisibleForTesting final int maxSize;
    
      private EvictingQueue(int maxSize) {
        checkArgument(maxSize >= 0, "maxSize (%s) must >= 0", maxSize);
        this.delegate = new ArrayDeque<>(maxSize);
        this.maxSize = maxSize;
      }
    
      /**
       * Creates and returns a new evicting queue that will hold up to {@code maxSize} elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top