Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Potato (0.11 sec)

  1. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    
    		r := routes[0]
    		routeAction, ok := r.GetAction().(*envoyroute.Route_Route)
    		g.Expect(ok).NotTo(BeFalse())
    
    		weightedCluster := routeAction.Route.GetWeightedClusters()
    		g.Expect(weightedCluster).NotTo(BeNil())
    		g.Expect(len(weightedCluster.GetClusters())).To(Equal(2))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    // me | mb<<8 | rotate<<16 | nbits<<24 where me and mb can
    // be used to regenerate the input mask.
    func encodePPC64RotateMask(rotate, mask, nbits int64) int64 {
    	var mb, me, mbn, men int
    
    	// Determine boundaries and then decode them
    	if mask == 0 || ^mask == 0 || rotate >= nbits {
    		panic(fmt.Sprintf("invalid PPC64 rotate mask: %x %d %d", uint64(mask), rotate, nbits))
    	} else if nbits == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    }
    
    func testRotate(t *testing.T, rotate bool, nameservers, wantServers []string) {
    	defer dnsWaitGroup.Wait()
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conf.teardown()
    
    	var confLines []string
    	for _, ns := range nameservers {
    		confLines = append(confLines, "nameserver "+ns)
    	}
    	if rotate {
    		confLines = append(confLines, "options rotate")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ROR", argLength: 2, reg: gp21, asm: "ROR"},                        // arg0 right rotate by (arg1 mod 64) bits
    		{name: "RORW", argLength: 2, reg: gp21, asm: "RORW"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "RORconst", argLength: 1, reg: gp11, asm: "ROR", aux: "Int64"},     // arg0 right rotate by auxInt bits, auxInt should be in the range 0 to 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				ExpirationTimestamp: now.Add(7 * time.Minute),
    			},
    			wantEncryptCalls: 1,
    			wantLogs: []string{
    				`"encrypting content using envelope service" uid="panda"`,
    			},
    			wantErr: `failed to rotate DEK uid="panda", useSeed=false, ` +
    				`errState=<nil>, errGen=failed to encrypt DEK, error: broken, statusKeyIDHash="sha256:ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d", ` +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

            transform: rotate(45deg);
            transform-origin: 10% 10%;
            width: 26px;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) {
            opacity: 0;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) {
            transform: rotate(-45deg);
            transform-origin: 10% 90%;
            width: 26px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (RotateLeft(32|64) ...) => ((ROTLW|ROTL) ...)
    
    // Constant rotate generation
    (ROTLW  x (MOVDconst [c])) => (ROTLWconst  x [c&31])
    (ROTL   x (MOVDconst [c])) => (ROTLconst   x [c&63])
    
    // Combine rotate and mask operations
    (ANDconst [m] (ROTLWconst [r] x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,m,32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	line-height: 0;
    	margin-top: 0.3rem;
    	right: 0;
    	font-weight: 400;
    	transform-origin: center;
    	transition: 200ms linear;
    }
    
    details[open] summary:after {
    	transform: rotate(45deg);
    	font-size: 2rem;
    }
    
    details summary {
    	outline: 0;
    }
    
    details p {
    	font-size: 0.95rem;
    	margin: 0 0 1rem;
    	padding-top: 1rem;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    const (
    	// ticketKeyLifetime is how long a ticket key remains valid and can be used to
    	// resume a client connection.
    	ticketKeyLifetime = 7 * 24 * time.Hour // 7 days
    
    	// ticketKeyRotation is how often the server should rotate the session ticket key
    	// that is used for new tickets.
    	ticketKeyRotation = 24 * time.Hour
    )
    
    // ticketKey is the internal representation of a session ticket key.
    type ticketKey struct {
    	aesKey  [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    		// ignore batch-replicate.bin and batch-rotate.bin entries
    		if strings.HasSuffix(result.Item.Name, slashSeparator) {
    			continue
    		}
    		req := &BatchJobRequest{}
    		if err := req.load(ctx, j.objLayer, result.Item.Name); err != nil {
    			batchLogIf(ctx, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top