Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for wastage (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// promptly ejected from its queue.  The goroutine doing the APF handling writes an HTTP
    		// response message with status 429.
    		// The timeout handler invokes its inner handler in one goroutine while reacting to the
    		// passage of time in its original goroutine.  That reaction to a time out consists of either
    		// (a) writing an HTTP response message with status 504 to indicate the timeout or (b) doing an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	abi.StructType
    }
    
    func pkgPath(n abi.Name) string {
    	if n.Bytes == nil || *n.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if n.HasTag() {
    		i2, l2 := n.ReadVarint(off)
    		off += i2 + l2
    	}
    	var nameOff int32
    	// Note that this field may not be aligned in memory,
    	// so we cannot use a direct int32 assignment here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    		// consistent with ld.pkgs: we don't need to pass ld.pkgs to updateRoots
    		// again. (That would waste time looking for changes that we have already
    		// applied.)
    		var noPkgs []*loadPkg
    		// We also know that we're going to call updateRequirements again next
    		// iteration so we don't need to also update it here. (That would waste time
    		// computing a "direct" map that we'll have to recompute later anyway.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    	// Total amount of space to reserve at the start of the file
    	// for File Header, Auxiliary Header, and Section Headers.
    	// May waste some.
    	XCOFFHDRRESERVE = FILHSZ_64 + AOUTHSZ_EXEC64 + SCNHSZ_64*23
    
    	// base on dump -o, then rounded from 32B to 64B to
    	// match worst case elf text section alignment on ppc64.
    	XCOFFSECTALIGN int64 = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
       * to thread contention. But overestimates and underestimates within an order of magnitude do not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    	payload := record[recordHeaderLen:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    		case "arm":
    			// distToMove must be 8-byte aligned per ARM calling convention
    			// https://docs.microsoft.com/en-us/cpp/build/overview-of-arm-abi-conventions#stage-c-assignment-of-arguments-to-registers-and-stack
    			_, _, e1 = Syscall6(procSetFilePointerEx.Addr(), 6, uintptr(handle), 0, uintptr(distToMove), uintptr(distToMove>>32), uintptr(unsafe.Pointer(newFilePointer)), uintptr(whence))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Configuring debug binaries
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/variants/groovy/build.gradle[tag=build-type-config]
    ----
    
    NOTE: At this stage, it is completely up to the build script to configure the relevant compiler/linker flags for each build type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	hash    uintptr
    	size    uintptr
    	nstk    uintptr
    }
    
    // A memRecord is the bucket data for a bucket of type memProfile,
    // part of the memory profile.
    type memRecord struct {
    	// The following complex 3-stage scheme of stats accumulation
    	// is required to obtain a consistent picture of mallocs and frees
    	// for some point in time.
    	// The problem is that mallocs come in real time, while frees
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

     */
    
    var elfstrdat, elfshstrdat []byte
    
    /*
     * Total amount of space to reserve at the start of the file
     * for Header, PHeaders, SHeaders, and interp.
     * May waste some.
     * On FreeBSD, cannot be larger than a page.
     */
    const (
    	ELFRESERVE = 4096
    )
    
    /*
     * We use the 64-bit data structures on both 32- and 64-bit machines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top