Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for maddld (0.11 sec)

  1. src/crypto/tls/handshake_test.go

    				currentFlow = nil
    			}
    			continue
    		}
    
    		// Otherwise the line is a line of hex dump that looks like:
    		// 00000170  fc f5 06 bf (...)  |.....X{&?......!|
    		// (Some bytes have been omitted from the middle section.)
    		_, after, ok := strings.Cut(line, " ")
    		if !ok {
    			return nil, errors.New("invalid test data")
    		}
    		line = after
    
    		before, _, ok := strings.Cut(line, "|")
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    		g.mul(y)
    		blocks = blocks[gcmBlockSize:]
    	}
    }
    
    // update extends y with more polynomial terms from data. If data is not a
    // multiple of gcmBlockSize bytes long then the remainder is zero padded.
    func (g *gcm) update(y *gcmFieldElement, data []byte) {
    	fullBlocks := (len(data) >> 4) << 4
    	g.updateBlocks(y, data[:fullBlocks])
    
    	if len(data) != fullBlocks {
    		var partialBlock [gcmBlockSize]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/runtime/preempt.go

    // asynchronous safe point. This indicates that:
    //
    // 1. It's safe to suspend gp and conservatively scan its stack and
    // registers. There are no potentially hidden pointer values and it's
    // not in the middle of an atomic sequence like a write barrier.
    //
    // 2. gp has enough stack space to inject the asyncPreempt call.
    //
    // 3. It's generally safe to interact with the runtime, even if we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			if p.Off > (p.Vaddr & pageOffsetMask) {
    				alignedSegOffset = p.Off - (p.Vaddr & pageOffsetMask)
    			}
    			if mapOff < alignedSegOffset {
    				continue
    			}
    			// If the mapping starts in the middle of the segment, it covers less than
    			// one page of the segment, and it extends at least one page past the
    			// segment, then this mapping comes from a different segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FNMSUBD", argLength: 3, reg: fp31, asm: "FNMSUBD"}, // -arg0 + (arg1 * arg2)
    		{name: "MADD", argLength: 3, reg: gp31, asm: "MADD"},       // +arg0 + (arg1 * arg2)
    		{name: "MADDW", argLength: 3, reg: gp31, asm: "MADDW"},     // +arg0 + (arg1 * arg2), 32-bit
    		{name: "MSUB", argLength: 3, reg: gp31, asm: "MSUB"},       // +arg0 - (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableListTest.java

                .createTestSuite());
        suite.addTest(
            ListTestSuiteBuilder.using(new ImmutableListMiddleSubListGenerator())
                .named("ImmutableList, middle subList")
                .withFeatures(CollectionSize.ANY, SERIALIZABLE, ALLOWS_NULL_QUERIES)
                .createTestSuite());
        suite.addTest(
            ListTestSuiteBuilder.using(new UnhashableElementsImmutableListGenerator())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/runtime/map_faststr.go

    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    	// If we have a type parameter there's nothing to do.
    	if isTypeParam(typ) {
    		return
    	}
    
    	// We don't want to call under() or complete interfaces while we are in
    	// the middle of type-checking parameter declarations that might belong
    	// to interface methods. Delay this check to the end of type-checking.
    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    			if iface == nil {
    				errorf("non-interface constraint marked implicit")
    			}
    			iface.MarkImplicit()
    		}
    		// The constraint type may not be complete, if we
    		// are in the middle of a type recursion involving type
    		// constraints. So, we defer SetConstraint until we have
    		// completely set up all types in ImportData.
    		r.p.later = append(r.p.later, setConstraintArgs{t: t, constraint: constraint})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/encoding/asn1/marshal.go

    	// Per X690 Section 11.6: The encodings of the component values of a
    	// set-of value shall appear in ascending order, the encodings being
    	// compared as octet strings with the shorter components being padded
    	// at their trailing end with 0-octets.
    	//
    	// First we encode each element to its TLV encoding and then use
    	// octetSort to get the ordering expected by X690 DER rules before
    	// writing the sorted encodings out to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top