Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for Potato (0.1 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	}
    
    	return op
    }
    
    // assembler syntax for the various shifts.
    // @x> is a lie; the assembler uses @> 0
    // instead of @x> 1, but i wanted to be clear that it
    // was a different operation (rotate right extended, not rotate right).
    var plan9Shift = []string{"<<", ">>", "->", "@>", "@x>"}
    
    func plan9Arg(inst *Inst, pc uint64, symname func(uint64) (string, uint64), arg Arg) string {
    	switch a := arg.(type) {
    	case Endian:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/sort/zsortfunc.go

    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    // Having the caller check this condition eliminates many leaf recursion calls,
    // which improves performance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  5. src/slices/zsortanyfunc.go

    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    // Having the caller check this condition eliminates many leaf recursion calls,
    // which improves performance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K 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/slices/zsortordered.go

    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    // Having the caller check this condition eliminates many leaf recursion calls,
    // which improves performance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/ca_test.go

    	if err != nil {
    		t.Fatalf("Failed to parse cert chain pem.")
    	}
    	// if CA cert becomes invalid before workload cert it's going to cause workload cert to be invalid too,
    	// however citatel won't rotate if that happens
    	delta := certChain.NotAfter.Sub(t0.Add(ca.defaultCertTTL))
    	if delta >= time.Second*2 {
    		t.Errorf("Invalid default cert TTL, should be the same as cert chain: %v VS (expected) %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
Back to top