Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for content_es (0.1 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    				checkTest(pass, fn, "Benchmark")
    			case strings.HasPrefix(fn.Name.Name, "Fuzz"):
    				checkTest(pass, fn, "Fuzz")
    				checkFuzz(pass, fn)
    			}
    		}
    	}
    	return nil, nil
    }
    
    // checkFuzz checks the contents of a fuzz function.
    func checkFuzz(pass *analysis.Pass, fn *ast.FuncDecl) {
    	params := checkFuzzCall(pass, fn)
    	if params != nil {
    		checkAddCalls(pass, fn, params)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    		The version of the installed Go tree, as reported by runtime.Version.
    	`,
    }
    
    var HelpFileType = &base.Command{
    	UsageLine: "filetype",
    	Short:     "file types",
    	Long: `
    The go command examines the contents of a restricted set of files
    in each directory. It identifies which files to examine based on
    the extension of the file name. These extensions are:
    
    	.go
    		Go source files.
    	.c, .h
    		C source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    #define dataPtr		SI	// input, base pointer to first input data block
    #define numBytes	DX	// input, number of input bytes to be processed
    #define sha256Constants	AX	// round contents from K256 table, indexed by round number x 32
    #define msg		X0	// input data
    #define state0		X1	// round intermediates and outputs
    #define state1		X2
    #define m0		X3	// m0, m1,... m4 -- round message temps
    #define m1		X4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/flag/flag.go

    // The flag package may call the [String] method with a zero-valued receiver,
    // such as a nil pointer.
    type Value interface {
    	String() string
    	Set(string) error
    }
    
    // Getter is an interface that allows the contents of a [Value] to be retrieved.
    // It wraps the [Value] interface, rather than being part of it, because it
    // appeared after Go 1 and its compatibility rules. All [Value] types provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. src/debug/pe/file.go

    		d = d[20:]
    		if dt.OriginalFirstThunk == 0 {
    			break
    		}
    		ida = append(ida, dt)
    	}
    	// TODO(brainman): this needs to be rewritten
    	//  ds.Data() returns contents of section containing import table. Why store in variable called "names"?
    	//  Why we are retrieving it second time? We already have it in "d", and it is not modified anywhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/parser.go

    					}
    					if !p.discard(v) {
    						return io.EOF
    					}
    				}
    			}
    		}
    
    		p.args = ev.args[:0]
    		return nil
    	}
    }
    
    // loadBatch loads the next batch for pid and appends its contents to to events.
    func (p *parser) loadBatch(pid int32, events []Event) ([]Event, error) {
    	offsets := p.batchOffsets[pid]
    	if len(offsets) == 0 {
    		return nil, io.EOF
    	}
    	n := offsets[0].numEvents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/schedule.go

    func (h ValHeap) Swap(i, j int) { a := h.a; a[i], a[j] = a[j], a[i] }
    
    func (h *ValHeap) Push(x interface{}) {
    	// Push and Pop use pointer receivers because they modify the slice's length,
    	// not just its contents.
    	v := x.(*Value)
    	h.a = append(h.a, v)
    }
    func (h *ValHeap) Pop() interface{} {
    	old := h.a
    	n := len(old)
    	x := old[n-1]
    	h.a = old[0 : n-1]
    	return x
    }
    func (h ValHeap) Less(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/os/file_plan9.go

    		return err
    	}
    	defer f.decref()
    
    	if err = syscall.Fwstat(f.fd, buf[:n]); err != nil {
    		return &PathError{Op: "chmod", Path: f.name, Err: err}
    	}
    	return nil
    }
    
    // Sync commits the current contents of the file to stable storage.
    // Typically, this means flushing the file system's in-memory copy
    // of recently written data to disk.
    func (f *File) Sync() error {
    	if f == nil {
    		return ErrInvalid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/debug/gosym/symtab.go

    // nameWithoutInst returns s.Name if s.Name has no brackets (does not reference an
    // instantiated type, function, or method). If s.Name contains brackets, then it
    // returns s.Name with all the contents between (and including) the outermost left
    // and right bracket removed. This is useful to ignore any extra slashes or dots
    // inside the brackets from the string searches below, where needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa.go

    	return &cipher.StreamReader{
    		R: zeroReader,
    		S: cipher.NewCTR(block, []byte(aesIV)),
    	}, nil
    }
    
    type zr struct{}
    
    var zeroReader = zr{}
    
    // Read replaces the contents of dst with zeros. It is safe for concurrent use.
    func (zr) Read(dst []byte) (n int, err error) {
    	clear(dst)
    	return len(dst), nil
    }
    
    // VerifyASN1 verifies the ASN.1 encoded signature, sig, of hash using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top