Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Potato (0.4 sec)

  1. 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)
  2. 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)
  3. src/cmd/internal/obj/arm/asm5.go

    		m := uint32(1<<i - 1)
    		if x, y := immrot(v&m), immrot(v&^m); x != 0 && y != 0 {
    			return uint32(x), uint32(y)
    		}
    	}
    	// TODO: handle some more cases, like where
    	// the wraparound from the rotate could help.
    	return 0, 0
    }
    
    // immrot2s returns bits encoding the immediate constant fields of two instructions,
    // such that the encoded constants y, x satisfy y-x==v, y&x==0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    // byte swap for ARMv5
    // let (a, b, c, d) be the bytes of x from high to low
    // t1 = x right rotate 16 bits -- (c,   d,   a,   b  )
    // t2 = x ^ t1                 -- (a^c, b^d, a^c, b^d)
    // t3 = t2 &^ 0xff0000         -- (a^c, 0,   a^c, b^d)
    // t4 = t3 >> 8                -- (0,   a^c, 0,   a^c)
    // t5 = x right rotate 8 bits  -- (d,   a,   b,   c  )
    // result = t4 ^ t5            -- (d,   c,   b,   a  )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_CONST
    		p.From.Offset = v.AuxInt
    		p.Reg = v.Args[0].Reg()
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    		// Auxint holds encoded rotate + mask
    	case ssa.OpPPC64RLWINM, ssa.OpPPC64RLWMI:
    		sh, mb, me, _ := ssa.DecodePPC64RotateMask(v.AuxInt)
    		p := s.Prog(v.Op.Asm())
    		p.To = obj.Addr{Type: obj.TYPE_REG, Reg: v.Reg()}
    		p.Reg = v.Args[0].Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top