Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for Amount (0.21 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // makeMounts generates container volume mounts for kubelet runtime v1.
    func (m *kubeGenericRuntimeManager) makeMounts(opts *kubecontainer.RunContainerOptions, container *v1.Container) []*runtimeapi.Mount {
    	volumeMounts := []*runtimeapi.Mount{}
    
    	for idx := range opts.Mounts {
    		v := opts.Mounts[idx]
    		selinuxRelabel := v.SELinuxRelabel && selinux.GetEnabled()
    		mount := &runtimeapi.Mount{
    			HostPath:          v.HostPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

     * to avoid code duplication.  The writers know how to
     * marshal a 32-bit representation from the 64-bit structure.
     */
    
    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
    )
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    // The maximum amount of stack for a single recursive frame is probably
    // closer to 1kB, so this could potentially be raised, but it seems unlikely
    // that people have regexps nested even this deeply.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Max(64|32)F <t> x y) => (Neg(64|32)F <t> (Min(64|32)F <t> (Neg(64|32)F <t> x) (Neg(64|32)F <t> y)))
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    // Lowering shifts
    // Unsigned shifts need to return 0 if shift amount is >= width of shifted value.
    //   result = (arg << shift) & (shift >= argbits ? 0 : 0xffffffffffffffff)
    (Lsh64x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDQ (SHLQ <t> x y) (SBBQcarrymask <t> (CMP(Q|L|W|B)const y [64])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	return off1+size == off2 || off1 == off2+size
    }
    
    // check if value zeroes out upper 32-bit of 64-bit register.
    // depth limits recursion depth. In AMD64.rules 3 is used as limit,
    // because it catches same amount of cases as 4.
    func zeroUpper32Bits(x *Value, depth int) bool {
    	switch x.Op {
    	case OpAMD64MOVLconst, OpAMD64MOVLload, OpAMD64MOVLQZX, OpAMD64MOVLloadidx1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    And compilation can take a significant amount of time, so skipping the step when it’s not needed saves a lot of time.
    
    Gradle supports this behavior out of the box through a feature called *incremental build*.
    You have almost certainly already seen it in action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// server will set the `continue` field on the list metadata to a value that can be used with the
    	// same initial query to retrieve the next set of results. Setting a limit may return fewer than
    	// the requested amount of items (up to zero items) in the event all requested objects are
    	// filtered out and clients should only use the presence of the continue field to determine whether
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  8. src/runtime/mheap.go

    	allspans []*mspan // all spans out there
    
    	// Proportional sweep
    	//
    	// These parameters represent a linear function from gcController.heapLive
    	// to page sweep count. The proportional sweep system works to
    	// stay in the black by keeping the current page sweep count
    	// above this line at the current gcController.heapLive.
    	//
    	// The line has slope sweepPagesPerByte and passes through a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Multiple Checkstyle tasks may now run in parallel within a project.
    
    Some projects will need to increase the amount of memory available to Checkstyle to avoid out of memory errors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/replica_calculator_test.go

    		if tc.expectedError != nil {
    			require.Error(t, err, "there should be an error calculating the replica count")
    			assert.Contains(t, err.Error(), tc.expectedError.Error(), "the error message should have contained the expected error message")
    			return
    		}
    		require.NoError(t, err, "there should not have been an error calculating the replica count")
    		assert.Equal(t, tc.expectedReplicas, outReplicas, "replicas should be as expected")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
Back to top