Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for blockn (1.27 sec)

  1. src/go/types/api_test.go

    		}},
    		{`package p17; func _() { for{} }`, []string{
    			"file:", "func:", "for:", "block:",
    		}},
    		{`package p18; func _(n int) { for i := 0; i < n; i++ { _ = i } }`, []string{
    			"file:", "func:n", "for:i", "block:",
    		}},
    		{`package p19; func _(a []int) { for i := range a { _ = i} }`, []string{
    			"file:", "func:a", "range:i", "block:",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	}
    	if condition == nil {
    		t.Fatalf("Expected ExistingTestCondition condition, but didn't find it")
    	}
    }
    
    // waitForCacheCount blocks until the given cache store has the desired number
    // of items in it. This will return an error if the condition is not met after a
    // 10 second timeout.
    func waitForCacheCount(store cache.Store, n int) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes an external Java process.
         * <p>
         * The given action configures a {@link org.gradle.process.JavaExecSpec}, which is used to launch the process.
         * This method blocks until the process terminates, with its result being returned.
         *
         * @param action The action for configuring the execution.
         * @return the result of the execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	pid := ProcID(ev.args[0])
    	// N.B. In practice Ps can't block while they're sweeping, so this can only
    	// ever reference curCtx.P. However, be lenient about this like we are with
    	// GCMarkAssistActive; there's no reason the runtime couldn't change to block
    	// in the middle of a sweep.
    	pState, ok := o.pStates[pid]
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	PXOR	X7, X15
    
    	// compute number of remaining 128-byte blocks
    	DECQ	CX
    	SHRQ	$7, CX
    
    	PCALIGN $16
    aesloop:
    	// scramble state
    	AESENC	X8, X8
    	AESENC	X9, X9
    	AESENC	X10, X10
    	AESENC	X11, X11
    	AESENC	X12, X12
    	AESENC	X13, X13
    	AESENC	X14, X14
    	AESENC	X15, X15
    
    	// scramble state, xor in a block
    	MOVOU	(AX), X0
    	MOVOU	16(AX), X1
    	MOVOU	32(AX), X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    		},
    		{
    			name:               "volume mode filesystem",
    			volumeMode:         &fsMode,
    			expectedVolumeMode: v1.PersistentVolumeFilesystem,
    		},
    		{
    			name:               "volume mode block",
    			volumeMode:         &blockMode,
    			expectedVolumeMode: v1.PersistentVolumeBlock,
    		},
    	}
    
    	for _, test := range tests {
    		pv := &v1.PersistentVolume{
    			Spec: v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    // Test address from 192.0.2.0/24 block, reserved by RFC 5737 for documentation.
    var TestAddr = [4]byte{0xc0, 0x00, 0x02, 0x01}
    
    // Test address from 2001:db8::/32 block, reserved by RFC 3849 for documentation.
    var TestAddr6 = [16]byte{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	ExpandEnvironmentStrings(src *uint16, dst *uint16, size uint32) (n uint32, err error) = kernel32.ExpandEnvironmentStringsW
    //sys	CreateEnvironmentBlock(block **uint16, token Token, inheritExisting bool) (err error) = userenv.CreateEnvironmentBlock
    //sys	DestroyEnvironmentBlock(block *uint16) (err error) = userenv.DestroyEnvironmentBlock
    //sys	getTickCount64() (ms uint64) = kernel32.GetTickCount64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      k8s.io.api.core.v1.Lifecycle lifecycle = 36;
    
      // Controls if sidecar is injected at the front of the container list and blocks the start of the other containers until the proxy is ready
      //
      // Deprecated: replaced by ProxyConfig setting which allows per-pod configuration of this behavior.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	if test.key != nil {
    		key = test.key
    	}
    	derBytes, err := x509.MarshalPKCS8PrivateKey(key)
    	if err != nil {
    		panic(err)
    	}
    
    	var pemOut bytes.Buffer
    	pem.Encode(&pemOut, &pem.Block{Type: "PRIVATE KEY", Bytes: derBytes})
    
    	keyPath := tempFile(pemOut.String())
    	defer os.Remove(keyPath)
    
    	var command []string
    	command = append(command, serverCommand...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top