Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for Potato (0.42 sec)

  1. pilot/pkg/status/distribution/reporter_test.go

    	Expect(rpt.InProgressResources).To(Equal(map[string]int{
    		myResources[0].String(): 2,
    		myResources[1].String(): 1,
    		myResources[2].String(): 2,
    	}))
    	Expect(r.inProgressResources).NotTo(ContainElement(resources[0]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    					g.Expect(thresholds.MaxRequests).NotTo(BeNil())
    					g.Expect(thresholds.MaxRequests.Value).To(Equal(uint32(expected.Http.Http2MaxRequests)))
    					g.Expect(cluster.TypedExtensionProtocolOptions).NotTo(BeNil())
    					anyOptions := cluster.TypedExtensionProtocolOptions[v3.HttpProtocolOptionsType]
    					g.Expect(anyOptions).NotTo(BeNil())
    					httpProtocolOptions := &http.HttpProtocolOptions{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/slices/slices.go

    		return s
    	}
    
    	// The hard case - v overlaps c or d. We can't just shift up
    	// the data because we'd move or clobber the values we're trying
    	// to insert.
    	// So instead, write v on top of d, then rotate.
    	copy(s[n:], v)
    
    	// Now we have
    	// s: aaaaaaaabbbbccccccccvvvv
    	//            ^   ^       ^   ^
    	//            i  i+m      n  n+m
    
    	rotateRight(s[i:], m)
    
    	// Now we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    	enableJitterForRootCertRotator = env.Register("CITADEL_ENABLE_JITTER_FOR_ROOT_CERT_ROTATOR",
    		true,
    		"If true, set up a jitter to start root cert rotator. "+
    			"Jitter selects a backoff time in seconds to start root cert rotator, "+
    			"and the back off time is below root cert check interval.")
    
    	k8sInCluster = env.Register("KUBERNETES_SERVICE_HOST", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/security/first-steps.md

    Você verá algo deste tipo:
    
    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Botão de Autorizar!"
    	Você já tem um novo "botão de autorizar!".
    
    	E seu *path operation* tem um pequeno cadeado no canto superior direito que você pode clicar.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ROTLWconst", argLength: 1, reg: gp11, asm: "ROTLW", aux: "Int64"}, // uint32(arg0) rotate left by auxInt bits
    		{name: "EXTSWSLconst", argLength: 1, reg: gp11, asm: "EXTSWSLI", aux: "Int64"},
    
    		{name: "RLWINM", argLength: 1, reg: gp11, asm: "RLWNM", aux: "Int64"},                           // Rotate and mask by immediate "rlwinm". encodePPC64RotateMask describes aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. pkg/test/framework/suite_test.go

    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    
    	g.Expect(exit2Called).To(Equal(true))
    	g.Expect(errCode1).To(Equal(0))
    	g.Expect(errCode2).NotTo(Equal(0))
    }
    
    func TestSuite_GetResource(t *testing.T) {
    	defer cleanupRT()
    
    	act := func(refPtr any, trackedResource resource.Resource) error {
    		var err error
    		runFn := func(ctx *suiteContext) int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    	BLT	loop128
    	ADD	$32, OUTDEC, OUTDEC
    	BEQ	l192
    	ADD	$32, OUTDEC, OUTDEC
    	JMP	l256
    
    loop128:
    	// Key schedule (Round 1 to 8)
    	VPERM	IN0, IN0, MASK, KEY              // vperm 3,1,1,5         Rotate-n-splat
    	VSLDOI	$12, ZERO, IN0, TMP              // vsldoi 6,0,1,12
    	STXVD2X	IN0, (R0+OUTENC)
    	STXVD2X	IN0, (R0+OUTDEC)
    	VCIPHERLAST	KEY, RCON, KEY           // vcipherlast 3,3,4
    	ADD	$16, OUTENC, OUTENC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/crypto/des/block.go

    	feistelBoxOnce.Do(initFeistelBox)
    
    	// apply PC1 permutation to key
    	key := byteorder.BeUint64(keyBytes)
    	permutedKey := permuteBlock(key, permutedChoice1[:])
    
    	// rotate halves of permuted key according to the rotation schedule
    	leftRotations := ksRotate(uint32(permutedKey >> 28))
    	rightRotations := ksRotate(uint32(permutedKey<<4) >> 4)
    
    	// generate subkeys
    	for i := 0; i < 16; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. docs/kms/IAM.md

    change unified the key-management aspect within MinIO.
    
    The unified KMS-based approach has several advantages:
    
    - Key management is now centralized. There is one way to change or rotate encryption keys.
       There used to be two different mechanisms - one for regular S3 objects and one for IAM data.
    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top