Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 155 of 155 for original (0.12 sec)

  1. src/compress/zlib/reader.go

    	if checksum != z.digest.Sum32() {
    		z.err = ErrChecksum
    		return n, z.err
    	}
    	return n, io.EOF
    }
    
    // Calling Close does not close the wrapped [io.Reader] originally passed to [NewReader].
    // In order for the ZLIB checksum to be verified, the reader must be
    // fully consumed until the [io.EOF].
    func (z *reader) Close() error {
    	if z.err != nil && z.err != io.EOF {
    		return z.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/internal/coverage/pods/pods.go

    			pod.CounterDataFiles = append(pod.CounterDataFiles, e.file)
    			pod.Origins = append(pod.Origins, e.origin)
    			pod.ProcessIDs = append(pod.ProcessIDs, e.pid)
    		}
    		pods = append(pods, pod)
    	}
    	slices.SortFunc(pods, func(a, b Pod) int {
    		return strings.Compare(a.MetaFile, b.MetaFile)
    	})
    	return pods
    }
    
    func warning(s string, a ...interface{}) {
    	fmt.Fprintf(os.Stderr, "warning: ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    # The package import graph used in this test looks like:
    #
    # a ---- b
    #   \     \
    #    \     \
    #     ----- c ---- d
    #
    # The module dependency graph originally looks like:
    #
    # a ---- b.2
    #   \      \
    #    \      \
    #     ----- c.1 ---- d.2
    #
    # b.1 ---- c.2
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalarmult_test.go

    		t.Error(err)
    	}
    }
    
    func TestScalarMultNonIdentityPoint(t *testing.T) {
    	// Check whether p.ScalarMult and q.ScalaBaseMult give the same,
    	// when p and q are originally set to the base point.
    
    	scalarMultNonIdentityPoint := func(x Scalar) bool {
    		var p, q Point
    		p.Set(B)
    		q.Set(B)
    
    		p.ScalarMult(&x, B)
    		q.ScalarBaseMult(&x)
    
    		checkOnCurve(t, &p, &q)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    package x86asm
    
    import (
    	"fmt"
    	"strings"
    )
    
    type SymLookup func(uint64) (string, uint64)
    
    // GoSyntax returns the Go assembler syntax for the instruction.
    // The syntax was originally defined by Plan 9.
    // The pc is the program counter of the instruction, used for expanding
    // PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top