Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for mymath (0.12 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    				return rs, errGoModDirty
    			}
    		}
    		for _, m := range add {
    			if m.Version != mg.Selected(m.Path) {
    				return rs, errGoModDirty
    			}
    		}
    		for mPath := range direct {
    			if _, ok := rs.rootSelected(mPath); !ok {
    				// Module m is supposed to be listed explicitly, but isn't.
    				//
    				// Note that this condition is also detected (and logged with more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    {
      param(
        [parameter(Mandatory = $true, Position = 0)]
        [Uint32] $IPAddress
      )
    
      $dotted_ip = $(for ($i = 3; $i -gt -1; $i--) {
        $remainder = $IPAddress % [Math]::Pow(256, $i)
        ($IPAddress - $remainder) / [Math]::Pow(256, $i)
        $IPAddress = $remainder
      })
      return [String]::Join(".", $dotted_ip)
    }
    
    # TODO(pjh): this is copied from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	}
    
    	// sort slices by priority
    	for i, slice := range matchedPlugins {
    		sort.SliceStable(slice, func(i, j int) bool {
    			iPriority := int32(math.MinInt32)
    			if prio := slice[i].Priority; prio != nil {
    				iPriority = prio.Value
    			}
    			jPriority := int32(math.MinInt32)
    			if prio := slice[j].Priority; prio != nil {
    				jPriority = prio.Value
    			}
    			return iPriority > jPriority
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                    if ( sk != null ) {
                        // session key is truncated to 16 bytes, right padded with 0 if shorter
                        byte[] key = new byte[16];
                        System.arraycopy(sk, 0, key, 0, Math.min(16, sk.length));
                        this.sessionKey = key;
                    }
    
                    boolean signed = response != null && response.isSigned();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Xor(64|32|16|8) ...) => (XOR(Q|L|L|L) ...)
    (Com(64|32|16|8) ...) => (NOT(Q|L|L|L) ...)
    
    (Neg(64|32|16|8) ...) => (NEG(Q|L|L|L) ...)
    (Neg32F x) => (PXOR x (MOVSSconst <typ.Float32> [float32(math.Copysign(0, -1))]))
    (Neg64F x) => (PXOR x (MOVSDconst <typ.Float64> [math.Copysign(0, -1)]))
    
    // Lowering boolean ops
    (AndB ...) => (ANDL ...)
    (OrB ...) => (ORL ...)
    (Not x) => (XORLconst [1] x)
    
    // Lowering pointer arithmetic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/math/rand/v2/chacha8_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"encoding/hex"
    	"io"
    	. "math/rand/v2"
    	"testing"
    	"testing/iotest"
    )
    
    func TestChaCha8(t *testing.T) {
    	p := NewChaCha8(chacha8seed)
    	for i, x := range chacha8output {
    		if u := p.Uint64(); u != x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    	if buildcfg.GOARM.Version < 7 || buildcfg.GOARM.SoftFloat || math.Float64bits(e) != 0 {
    		return -1
    	}
    	return 0
    }
    
    func (c *ctxt5) chipfloat5(e float64) int {
    	// We use GOARM.Version=7 and !GOARM.SoftFloat to gate the use of VFPv3 vmov (imm) instructions.
    	if buildcfg.GOARM.Version < 7 || buildcfg.GOARM.SoftFloat {
    		return -1
    	}
    
    	ei := math.Float64bits(e)
    	l := uint32(ei)
    	h := uint32(ei >> 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    	"internal/buildcfg"
    	"math"
    	"strings"
    )
    
    // ssaMarkMoves marks any MOVXconst ops that need to avoid clobbering flags.
    func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {
    	//	flive := b.FlagsLiveAtEnd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      private MapMakerInternalMap(MapMaker builder, InternalEntryHelper<K, V, E, S> entryHelper) {
        concurrencyLevel = Math.min(builder.getConcurrencyLevel(), MAX_SEGMENTS);
    
        keyEquivalence = builder.getKeyEquivalence();
        this.entryHelper = entryHelper;
    
        int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    
        // Find power-of-two sizes best matching arguments. Constraints:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    		// it will only rarely actually vary from rs.direct. Measure this cost and
    		// maybe avoid the copy.
    		direct = make(map[string]bool, len(rs.direct))
    		for mPath := range rs.direct {
    			direct[mPath] = true
    		}
    	}
    
    	var maxTooNew *gover.TooNewError
    	for _, pkg := range ld.pkgs {
    		if pkg.err != nil {
    			if tooNew := (*gover.TooNewError)(nil); errors.As(pkg.err, &tooNew) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top