Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for 1024m (0.07 sec)

  1. pilot/pkg/networking/core/gateway.go

    		// targetPort, which handles the common case of exposing ports like 80 and 443 but listening on
    		// higher numbered ports.
    		if builder.node.IsUnprivileged() && port.Number < 1024 {
    			log.Warnf("buildGatewayListeners: skipping privileged gateway port %d for node %s as it is an unprivileged pod",
    				port.Number, builder.node.ID)
    			continue
    		}
    		var extraBind []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    func TestParseMultipartFormOrder(t *testing.T) {
    	req := newTestMultipartRequest(t)
    	if _, err := req.MultipartReader(); err != nil {
    		t.Fatalf("MultipartReader: %v", err)
    	}
    	if err := req.ParseMultipartForm(1024); err == nil {
    		t.Fatal("expected an error from ParseMultipartForm after call to MultipartReader")
    	}
    }
    
    // Test that MultipartReader errors if called
    // after ParseMultipartForm on the same request.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    	// purposes like signal handling. Used on Windows, Plan 9,
    	// and iOS because they do not use a separate stack.
    	stackSystem = goos.IsWindows*512*goarch.PtrSize + goos.IsPlan9*512 + goos.IsIos*goarch.IsArm64*1024
    
    	// The minimum size of stack used by Go code
    	stackMin = 2048
    
    	// The minimum stack size to allocate.
    	// The hackery here rounds fixedStack0 up to a power of 2.
    	fixedStack0 = stackMin + stackSystem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    	gp := getg()
    	systemstack(func() {
    		shrinkstack(gp)
    	})
    	// If our new stack contains frame pointers into the old stack, this will
    	// crash because the old stack has been poisoned.
    	FPCallers(make([]uintptr, 1024))
    }
    
    // BlockOnSystemStack switches to the system stack, prints "x\n" to
    // stderr, and blocks in a stack containing
    // "runtime.blockOnSystemStackInternal".
    func BlockOnSystemStack() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top