Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for bidiIndex (0.28 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

              swap(array, from, to);
            }
            return array[k];
          } else {
            int midIndex = (from + to) >>> 1;
            // Choose the median of the elements at the from, to and mid indexes,
            // and rearrange so that array[from]<=array[from+1], and
            // array[to] => array[from + 1].
    
            swap(array, midIndex, from + 1);
    
            if (array[from] > array[to]) {
              swap(array, from, to);
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	// Erroneous cases.
    	{"%[d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%]d", SE{2, 1}, "%!](int=2)d%!(EXTRA int=1)"},
    	{"%[]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[-3]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[99]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[3]", SE{2, 1}, "%!(NOVERB)"},
    	{"%[1].2d", SE{5, 6}, "%!d(BADINDEX)"},
    	{"%[1]2d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%3.[2]d", SE{7}, "%!d(BADINDEX)"},
    	{"%.[2]d", SE{7}, "%!d(BADINDEX)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/cmd/internal/gcprog/gcprog.go

    // It also enables debugging checks during the encoding.
    func (w *Writer) Debug(out io.Writer) {
    	w.debug = out
    }
    
    // BitIndex returns the number of bits written to the bit stream so far.
    func (w *Writer) BitIndex() int64 {
    	return w.index
    }
    
    // byte writes the byte x to the output.
    func (w *Writer) byte(x byte) {
    	if w.debug != nil {
    		w.debugBuf = append(w.debugBuf, x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. src/fmt/doc.go

    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    		Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
    	Invalid or invalid use of argument index: %!(BADINDEX)
    		Printf("%*[2]d", 7):       %!d(BADINDEX)
    		Printf("%.[2]d", 7):       %!d(BADINDEX)
    
    All errors begin with the string "%!" followed sometimes
    by a single character (the verb) and end with a parenthesized
    description.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    		s.refillAllocCache(whichByte)
    		aCache = s.allocCache
    		bitIndex = sys.TrailingZeros64(aCache)
    		// nothing available in cached bits
    		// grab the next 8 bytes and try again.
    	}
    	result := sfreeindex + uint16(bitIndex)
    	if result >= snelems {
    		s.freeindex = snelems
    		return snelems
    	}
    
    	s.allocCache >>= uint(bitIndex + 1)
    	sfreeindex = result + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	hrHRIndex         ID = 371
    	hsbIndex          ID = 372
    	hsbDEIndex        ID = 373
    	huIndex           ID = 374
    	huHUIndex         ID = 375
    	hyIndex           ID = 376
    	hyAMIndex         ID = 377
    	idIndex           ID = 378
    	idIDIndex         ID = 379
    	igIndex           ID = 380
    	igNGIndex         ID = 381
    	iiIndex           ID = 382
    	iiCNIndex         ID = 383
    	inIndex           ID = 384
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  7. src/fmt/print.go

    	nilAngleString    = "<nil>"
    	nilParenString    = "(nil)"
    	nilString         = "nil"
    	mapString         = "map["
    	percentBangString = "%!"
    	missingString     = "(MISSING)"
    	badIndexString    = "(BADINDEX)"
    	panicString       = "(PANIC="
    	extraString       = "%!(EXTRA "
    	badWidthString    = "%!(BADWIDTH)"
    	badPrecString     = "%!(BADPREC)"
    	noVerbString      = "%!(NOVERB)"
    	invReflectString  = "<invalid reflect.Value>"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.sampleMeans_=[];this.running_.add(value);value=this.unit.truncate(value);const binIndex=this.getBinIndexForValue(value);let bin=this.allBins[binIndex];if(bin.count===0){bin=new HistogramBin(bin.range);this.allBins[binIndex]=bin;}
    bin.addSample(value);if(opt_diagnostics){bin.addDiagnosticMap(opt_diagnostics);}}
    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