Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for streamSafe (0.5 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    func (ss *streamSafe) first(p Properties) {
    	*ss = streamSafe(p.nTrailingNonStarters())
    }
    
    // insert returns a ssState value to indicate whether a rune represented by p
    // can be inserted.
    func (ss *streamSafe) next(p Properties) ssState {
    	if *ss > maxNonStarters {
    		panic("streamSafe was not reset")
    	}
    	n := p.nLeadingNonStarters()
    	if *ss += streamSafe(n); *ss > maxNonStarters {
    		*ss = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/composition.go

    func (ss *streamSafe) first(p Properties) {
    	*ss = streamSafe(p.nTrailingNonStarters())
    }
    
    // insert returns a ssState value to indicate whether a rune represented by p
    // can be inserted.
    func (ss *streamSafe) next(p Properties) ssState {
    	if *ss > maxNonStarters {
    		panic("streamSafe was not reset")
    	}
    	n := p.nLeadingNonStarters()
    	if *ss += streamSafe(n); *ss > maxNonStarters {
    		*ss = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    	if info.size == 0 {
    		if atEOF {
    			return 1
    		}
    		return -1
    	}
    	ss := streamSafe(0)
    	ss.first(info)
    
    	for i := int(info.size); i < nsrc; i += int(info.size) {
    		info = fd.info(src, i)
    		if info.size == 0 {
    			if atEOF {
    				return i
    			}
    			return -1
    		}
    		// TODO: Using streamSafe to determine the boundary isn't the same as
    		// using BoundaryBefore. Determine which should be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    	if info.size == 0 {
    		if atEOF {
    			return 1
    		}
    		return -1
    	}
    	ss := streamSafe(0)
    	ss.first(info)
    
    	for i := int(info.size); i < nsrc; i += int(info.size) {
    		info = fd.info(src, i)
    		if info.size == 0 {
    			if atEOF {
    				return i
    			}
    			return -1
    		}
    		// TODO: Using streamSafe to determine the boundary isn't the same as
    		// using BoundaryBefore. Determine which should be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            def streamValue = args[streamName]
            def result = ""
            if (streamValue) {
                result += "$streamName = $streamValue"
            }
            if (streamValue && !streamValue.startsWith("System.")) {
                result += """
                    doLast {
                        ${streamName}.close()
                    }
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const eventsByStreamName=tr.b.groupIntoMap(webMediaPlayerMSEvents,event=>event.args[STREAM_ID_NAME]);for(const[streamName,events]of eventsByStreamName){getTimeStats(histograms,streamName,events);}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top