Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for InitString (0.18 sec)

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

    	i.asciiF = nextASCIIBytes
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    }
    
    // InitString initializes i to iterate over src after normalizing it to Form f.
    func (i *Iter) InitString(f Form, src string) {
    	i.p = 0
    	if len(src) == 0 {
    		i.setDone()
    		i.rb.nsrc = 0
    		return
    	}
    	i.multiSeg = nil
    	i.rb.initString(f, src)
    	i.next = i.rb.f.nextMain
    	i.asciiF = nextASCIIString
    	i.info = i.rb.f.info(i.rb.src, i.p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.asciiF = nextASCIIBytes
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    }
    
    // InitString initializes i to iterate over src after normalizing it to Form f.
    func (i *Iter) InitString(f Form, src string) {
    	i.p = 0
    	if len(src) == 0 {
    		i.setDone()
    		i.rb.nsrc = 0
    		return
    	}
    	i.multiSeg = nil
    	i.rb.initString(f, src)
    	i.next = i.rb.f.nextMain
    	i.asciiF = nextASCIIString
    	i.info = i.rb.f.info(i.rb.src, i.p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	flushF func(*reorderBuffer) bool
    }
    
    func (rb *reorderBuffer) init(f Form, src []byte) {
    	rb.f = *formTable[f]
    	rb.src.setBytes(src)
    	rb.nsrc = len(src)
    	rb.ss = 0
    }
    
    func (rb *reorderBuffer) initString(f Form, src string) {
    	rb.f = *formTable[f]
    	rb.src.setString(src)
    	rb.nsrc = len(src)
    	rb.ss = 0
    }
    
    func (rb *reorderBuffer) setFlusher(out []byte, f func(*reorderBuffer) bool) {
    	rb.out = out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/norm/composition.go

    	flushF func(*reorderBuffer) bool
    }
    
    func (rb *reorderBuffer) init(f Form, src []byte) {
    	rb.f = *formTable[f]
    	rb.src.setBytes(src)
    	rb.nsrc = len(src)
    	rb.ss = 0
    }
    
    func (rb *reorderBuffer) initString(f Form, src string) {
    	rb.f = *formTable[f]
    	rb.src.setString(src)
    	rb.nsrc = len(src)
    	rb.ss = 0
    }
    
    func (rb *reorderBuffer) setFlusher(out []byte, f func(*reorderBuffer) bool) {
    	rb.out = out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (Thread.interrupted()) {
            throw new InterruptedException();
          }
          remainingNanos = endNanos - System.nanoTime();
        }
    
        String futureToString = toString();
        final String unitString = unit.toString().toLowerCase(Locale.ROOT);
        String message = "Waited " + timeout + " " + unit.toString().toLowerCase(Locale.ROOT);
        // Only report scheduling delay if larger than our spin threshold - otherwise it's just noise
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (Thread.interrupted()) {
            throw new InterruptedException();
          }
          remainingNanos = endNanos - System.nanoTime();
        }
    
        String futureToString = toString();
        final String unitString = unit.toString().toLowerCase(Locale.ROOT);
        String message = "Waited " + timeout + " " + unit.toString().toLowerCase(Locale.ROOT);
        // Only report scheduling delay if larger than our spin threshold - otherwise it's just noise
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const selectedSubUnit=scale[i];let formatSpec=this.formatSpec_;if(typeof formatSpec==='function')formatSpec=formatSpec();let unitString='';if(selectedSubUnit.symbol){if(!formatSpec.avoidSpacePrecedingUnit)unitString=' ';unitString+=selectedSubUnit.symbol;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top