Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 155 for original (0.44 sec)

  1. src/crypto/md5/md5block_amd64.s

    // Original source:
    //	http://www.zorinaq.com/papers/md5-amd64.html
    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // Translated from Perl generating GNU assembly into
    // #defines generating 6a assembly by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8_amd64.s

    	MOVOU (4*16)(BX), X4  // reload X4; temp now X15
    	QR(X2, X7, X8, X13, X15)
    	QR(X3, X4, X9, X14, X15)
    
    	DECL DX
    	JNZ loop
    
    	// Store interlaced blocks back to output buffer,
    	// adding original seed along the way.
    
    	// First the top and bottom rows.
    	MOVOU X0, (0*16)(BX)
    	MOVOU X1, (1*16)(BX)
    	MOVOU X2, (2*16)(BX)
    	MOVOU X3, (3*16)(BX)
    	MOVOU X12, (12*16)(BX)
    	MOVOU X13, (13*16)(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/go/types/instantiate_test.go

    	typ := pkg.Scope().Lookup("T").Type().(*Named)
    	obj, _, _ := LookupFieldOrMethod(typ, false, pkg, "m")
    	if obj == nil {
    		t.Fatalf(`LookupFieldOrMethod(%s, "m") = %v, want func m`, typ, obj)
    	}
    
    	// Verify that the original method is not mutated by instantiating T (this
    	// bug manifested when subst did not return a new signature).
    	want := "func (T[P]).m()"
    	if got := stripAnnotations(ObjectString(obj, RelativeTo(pkg))); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/net/http/fcgi/fcgi.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package fcgi implements the FastCGI protocol.
    //
    // See https://fast-cgi.github.io/ for an unofficial mirror of the
    // original documentation.
    //
    // Currently only the responder role is supported.
    package fcgi
    
    // This file defines the raw protocol and some utilities used by the child and
    // the host.
    
    import (
    	"bufio"
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3.go

    // number of output bytes. It panics if any output has already been read.
    func (d *state) Sum(in []byte) []byte {
    	if d.state != spongeAbsorbing {
    		panic("sha3: Sum after Read")
    	}
    
    	// Make a copy of the original hash so that caller can keep writing
    	// and summing.
    	dup := d.clone()
    	hash := make([]byte, dup.outputLen, 64) // explicit cap to allow stack allocation
    	dup.Read(hash)
    	return append(in, hash...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/api.go

    	}
    	return b, nil
    }
    
    type Response struct {
    	URL        string // redacted
    	Status     string
    	StatusCode int
    	Header     map[string][]string
    	Body       io.ReadCloser // Either the original body or &errorDetail.
    
    	fileErr     error
    	errorDetail errorDetailBuffer
    }
    
    // Err returns an *HTTPError corresponding to the response r.
    // If the response r has StatusCode 200 or 0 (unset), Err returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/importer_test.go

    			if pkginit.InitFunc == test.wantinits[0] {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			t.Errorf("%s: could not find expected function %q", test.pkgpath, test.wantinits[0])
    		}
    
    		// FIXME: the original version of this test was written against
    		// the v1 export data scheme for capturing init functions, so it
    		// verified the priority values. We moved away from the priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/workcmd/use.go

    }
    
    func workUse(ctx context.Context, gowork string, wf *modfile.WorkFile, args []string) {
    	workDir := filepath.Dir(gowork) // absolute, since gowork itself is absolute
    
    	haveDirs := make(map[string][]string) // absolute → original(s)
    	for _, use := range wf.Use {
    		var abs string
    		if filepath.IsAbs(use.Path) {
    			abs = filepath.Clean(use.Path)
    		} else {
    			abs = filepath.Join(workDir, use.Path)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. src/net/lookup_windows_test.go

    	testenv.MustHaveExternalNetwork(t)
    
    	for _, addr := range lookupTestIPs {
    		names, err := LookupAddr(addr)
    		if err != nil {
    			// The DNSError type stores the error as a string, so it cannot wrap the
    			// original error code and we cannot check for it here. However, we can at
    			// least use its error string to identify the correct localized text for
    			// the error to skip.
    			var DNS_ERROR_RCODE_SERVER_FAILURE syscall.Errno = 9002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/syscall/exec_libc.go

    		if TIOCSCTTY == 0 {
    			err1 = ENOSYS
    			goto childerror
    		}
    		err1 = ioctl(uintptr(sys.Ctty), uintptr(TIOCSCTTY), 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore original rlimit.
    	if rlim != nil {
    		setrlimit1(RLIMIT_NOFILE, unsafe.Pointer(rlim))
    	}
    
    	// Time to exec.
    	err1 = execve(
    		uintptr(unsafe.Pointer(argv0)),
    		uintptr(unsafe.Pointer(&argv[0])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top