Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for cpuinit (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    			}
    		}
    		return false
    	case *exprpb.Expr_ComprehensionExpr:
    		c := e.ComprehensionExpr
    		if c == nil {
    			return false
    		}
    		return hasSelectExp(c.IterRange, operand, field) ||
    			hasSelectExp(c.AccuInit, operand, field) ||
    			hasSelectExp(c.LoopCondition, operand, field) ||
    			hasSelectExp(c.LoopStep, operand, field) ||
    			hasSelectExp(c.Result, operand, field)
    	default:
    		return false
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    type ContainerResources struct {
    	// CPU capacity reserved for the container
    	CPURequest *resource.Quantity
    	// CPU limit enforced on the container
    	CPULimit *resource.Quantity
    	// Memory capaacity reserved for the container
    	MemoryRequest *resource.Quantity
    	// Memory limit enforced on the container
    	MemoryLimit *resource.Quantity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    	}
    
    	if pe64 != 0 {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh64)
    	} else {
    		binary.Write(ctxt.Out, binary.LittleEndian, &oh)
    	}
    }
    
    var pefile peFile
    
    func Peinit(ctxt *Link) {
    	var l int
    
    	if ctxt.Arch.PtrSize == 8 {
    		// 64-bit architectures
    		pe64 = 1
    		PEBASE = 1 << 32
    		if ctxt.Arch.Family == sys.AMD64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    		if (n != 0 && n != 239089) || m != 234 {
    			t.Fatal("Strtol x2: ", n, m)
    		}
    	} else if n != 0 || m != 234 {
    		t.Fatal("Strtol x2: ", n, m)
    	}
    	C.free(unsafe.Pointer(p))
    }
    
    var (
    	cuint  = (C.uint)(0)
    	culong C.ulong
    	cchar  C.char
    )
    
    type Context struct {
    	ctx *C.struct_ibv_context
    }
    
    func benchCgoCall(b *testing.B) {
    	b.Run("add-int", func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top