Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 521 for Amount (0.27 sec)

  1. src/internal/zstd/block.go

    func (r *Reader) compressedBlock(blockSize int) error {
    	if len(r.compressedBuf) >= blockSize {
    		r.compressedBuf = r.compressedBuf[:blockSize]
    	} else {
    		// We know that blockSize <= 128K,
    		// so this won't allocate an enormous amount.
    		need := blockSize - len(r.compressedBuf)
    		r.compressedBuf = append(r.compressedBuf, make([]byte, need)...)
    	}
    
    	if _, err := io.ReadFull(r.r, r.compressedBuf); err != nil {
    		return r.wrapNonEOFError(0, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    }
                    try {
                        // some impls support this but not factory.setAttribute("indent-number")
                        transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", String.valueOf(indentAmount));
                    } catch (IllegalArgumentException ignored) {
                        /* unsupported by this transformer */
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/RateLimiter.java

          return doGetRate();
        }
      }
    
      abstract double doGetRate();
    
      /**
       * Acquires a single permit from this {@code RateLimiter}, blocking until the request can be
       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_sh_test.go

    		}
    	}
    }
    
    // initRegistry creates and initializes a memory registry that holds a single
    // service with the provided amount of endpoints. It also creates a service for
    // the ingress with the provided external IP
    func initRegistry(server *xds.FakeDiscoveryServer, networkNum int, gatewaysIP []string, numOfEndpoints int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/kubelet/lifecycle/predicate.go

    // GetReason returns the reason of the InsufficientResourceError.
    func (e *InsufficientResourceError) GetReason() string {
    	return fmt.Sprintf("Insufficient %v", e.ResourceName)
    }
    
    // GetInsufficientAmount returns the amount of the insufficient resource of the error.
    func (e *InsufficientResourceError) GetInsufficientAmount() int64 {
    	return e.Requested - (e.Capacity - e.Used)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Lists.java

       * unspecified amount of padding; you almost certainly mean to call {@link
       * #newArrayListWithCapacity} (see that method for further advice on usage).
       *
       * <p><b>Note:</b> This method will soon be deprecated. Even in the rare case that you do want
       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    //		Encoding:
    //			type = TYPE_SHIFT
    //		On ARM:
    //			offset = (reg&15) | shifttype<<5 | count
    //			shifttype = 0, 1, 2, 3 for <<, >>, ->, @>
    //			count = (reg&15)<<8 | 1<<4 for a register shift count, (n&31)<<7 for an integer constant.
    //		On ARM64:
    //			offset = (reg&31)<<16 | shifttype<<22 | (count&63)<<10
    //			shifttype = 0, 1, 2 for <<, >>, ->
    //
    //	(reg, reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/CharStreams.java

          total += read;
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /**
       * Discards {@code n} characters of data from the reader. This method will block until the full
       * amount has been skipped. Does not close the reader.
       *
       * @param reader the reader to read from
       * @param n the number of characters to skip
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/trace/pprof.go

    }
    
    // pprofMaxStack is the extent of the deduplication we're willing to do.
    //
    // Because slices aren't comparable and we want to leverage maps for deduplication,
    // we have to choose a fixed constant upper bound on the amount of frames we want
    // to support. In practice this is fine because there's a maximum depth to these
    // stacks anyway.
    const pprofMaxStack = 128
    
    // stackMap is a map of trace.Stack to some value V.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/CharStreams.java

          total += read;
          Java8Compatibility.clear(buf);
        }
        return total;
      }
    
      /**
       * Discards {@code n} characters of data from the reader. This method will block until the full
       * amount has been skipped. Does not close the reader.
       *
       * @param reader the reader to read from
       * @param n the number of characters to skip
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top