Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Cauthon (5.06 sec)

  1. src/crypto/aes/block.go

    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    //	@author Antoon Bosselaers <******@****.***>
    //	@author Paulo Barreto <******@****.***>
    //
    //	This code is hereby placed in the public domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/lookup.go

    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    				if i, m := named.lookupMethod(pkg, name, foldCase); m != nil {
    					// potential match
    					// caution: method may not have a proper signature yet
    					index = concat(e.index, i)
    					if obj != nil || e.multiples {
    						return nil, index, false // collision
    					}
    					obj = m
    					indirect = e.indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/switch.go

    func (s *exprSwitch) Emit(out *ir.Nodes) {
    	s.flush()
    	out.Append(s.done.Take()...)
    }
    
    func (s *exprSwitch) flush() {
    	cc := s.clauses
    	s.clauses = nil
    	if len(cc) == 0 {
    		return
    	}
    
    	// Caution: If len(cc) == 1, then cc[0] might not an OLITERAL.
    	// The code below is structured to implicitly handle this case
    	// (e.g., sort.Slice doesn't need to invoke the less function
    	// when there's only a single slice element).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    			continue
    		}
    
    		if _, ok := rs.rootSelected(pkg.mod.Path); ok {
    			// It is possible that the main module's go.mod file is incomplete or
    			// otherwise erroneous — for example, perhaps the author forgot to 'git
    			// add' their updated go.mod file after adding a new package import, or
    			// perhaps they made an edit to the go.mod file using a third-party tool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// direct dependencies. (For example, the direct dependency might be a very
    		// stable codebase that predates modules and thus lacks a go.mod file, or
    		// the author of the direct dependency may have forgotten to commit a change
    		// to the go.mod file, or may have made an erroneous hand-edit that causes
    		// it to be untidy.)
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	Index int
    	Err   error
    }
    
    func (e *ArgumentError) Error() string { return e.Err.Error() }
    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    // CAUTION: This interface does not support the import of locally
    // vendored packages. See https://golang.org/s/go15vendor.
    // If possible, external implementations should implement ImporterFrom.
    type Importer interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    			// to intend to “upgrade” to a version that already existed at that point
    			// in time.
    			//
    			// We do this only if the current version is a pseudo-version: if the
    			// version is tagged, the author of the dependency module has given us
    			// explicit information about their intended precedence of this version
    			// relative to other versions, and we shouldn't contradict that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    		err := Unmarshal([]byte(test.ExpectXML), dest)
    
    		t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
    			switch fix := dest.(type) {
    			case *Feed:
    				fix.Author.InnerXML = ""
    				for i := range fix.Entry {
    					fix.Entry[i].Author.InnerXML = ""
    				}
    			}
    
    			if err != nil {
    				if test.UnmarshalError == "" {
    					t.Errorf("unmarshal(%#v): %s", test.ExpectXML, err)
    					return
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

     *    documentation and/or other materials provided with the distribution.
     *
     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    </title><link href="http://codereview.appspot.com/126085" rel="alternate"></link><updated>2009-10-04T01:35:58+00:00</updated><author><name>email-address-removed</name></author><id>urn:md5:134d9179c41f806be79b3a5f7877d19a</id><summary type="html">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top