Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 460 for FILL (0.04 sec)

  1. guava/src/com/google/common/net/PercentEscaper.java

          // Single byte UTF-8 characters
          // Start with "%--" and fill in the blanks
          char[] dest = new char[3];
          dest[0] = '%';
          dest[2] = UPPER_HEX_DIGITS[cp & 0xF];
          dest[1] = UPPER_HEX_DIGITS[cp >>> 4];
          return dest;
        } else if (cp <= 0x7ff) {
          // Two byte UTF-8 characters [cp >= 0x80 && cp <= 0x7ff]
          // Start with "%--%--" and fill in the blanks
          char[] dest = new char[6];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

                String statusPrefix = trimToConsole(consoleCols, 0, progressBarPrefix);
                String coloredProgress = trimToConsole(consoleCols, statusPrefix.length(), fill(fillerChar, completedWidth));
                String statusSuffix = trimToConsole(consoleCols, coloredProgress.length(), fill(incompleteChar, remainingWidth)
                    + progressBarSuffix + " " + (int) (current * 100.0 / total) + '%' + ' ' + suffix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/dslHtml.xsl

    index 0 1 1 0 0 0 0 chapter toc,title Version - © Gradle Inc. 2021 All rights reserved. .cls-1 { fill: #02303a; } gradle Careers | Privacy | Terms of Service | Contact User Manual Home DSL Reference Home Release Notes User Manual Home DSL Reference Home Release Notes signature : :...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. src/maps/maps_test.go

    			// 1 entry already
    			// 7 more fill up 1 bucket
    			// 1 more to grow to 2 buckets
    			for i := 0; i < 7+1; i++ {
    				m[K{float64(i) + 1}] = V{}
    			}
    		case 2:
    			// Capture the map mid-grow
    			// 1 entry already
    			// 7 more fill up 1 bucket
    			// 5 more (13 total) fill up 2 buckets
    			// 13 more (26 total) fill up 4 buckets
    			// 1 more to start the 4->8 bucket grow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/bytes/buffer_test.go

    			t.Errorf(testname+" (fill 2): m == %d, expected %d", m, len(fus))
    		}
    		if err != nil {
    			t.Errorf(testname+" (fill 3): err should always be nil, found err == %s", err)
    		}
    		s += fus
    		check(t, testname+" (fill 4)", buf, s)
    	}
    	return s
    }
    
    // Fill buf through n writes of byte slice fub.
    // The initial contents of buf corresponds to the string s;
    // the result is the final contents of buf returned as a string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. test/fixedbugs/bug207.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // used to panic because 6g didn't generate
    // the code to fill in the ... argument to fmt.Sprint.
    
    package main
    
    import "fmt"
    
    type T struct {
    	a, b, c, d, e []int;
    }
    
    var t T
    
    func main() {
    	if fmt.Sprint("xxx", t) != "yyy" { 
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 402 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashing.java

          return new int[buckets];
        }
      }
    
      static void tableClear(Object table) {
        if (table instanceof byte[]) {
          Arrays.fill((byte[]) table, (byte) 0);
        } else if (table instanceof short[]) {
          Arrays.fill((short[]) table, (short) 0);
        } else {
          Arrays.fill((int[]) table, 0);
        }
      }
    
      /**
       * Returns {@code table[index]}, where {@code table} is actually a {@code byte[]}, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    	for _, m := range masks {
    		*s |= *m.(*bitMask)
    	}
    }
    
    // Clear resets all bits in mask to zero
    func (s *bitMask) Clear() {
    	*s = 0
    }
    
    // Fill sets all bits in mask to one
    func (s *bitMask) Fill() {
    	*s = bitMask(^uint64(0))
    }
    
    // IsEmpty checks mask to see if all bits are zero
    func (s *bitMask) IsEmpty() bool {
    	return *s == 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

    // first arg of tf.Fill) is not duplicated.
    
    // CHECK-DAG: %[[CST:.*]] = "tf.Const"
    // CHECK-SAME: dense<1.000000e+00> : tensor<1x3xf32>
    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"
    // CHECK-SAME: dense<2> : tensor<i32>
    // CHECK: %[[SHAPE:.*]] = "tf.Shape"(%[[CST]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  10. src/bufio/bufio.go

    }
    
    var errNegativeRead = errors.New("bufio: reader returned negative count from Read")
    
    // fill reads a new chunk into the buffer.
    func (b *Reader) fill() {
    	// Slide existing data to beginning.
    	if b.r > 0 {
    		copy(b.buf, b.buf[b.r:b.w])
    		b.w -= b.r
    		b.r = 0
    	}
    
    	if b.w >= len(b.buf) {
    		panic("bufio: tried to fill full buffer")
    	}
    
    	// Read new data: try a limited number of times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
Back to top