Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 516 for beginning (0.29 sec)

  1. src/cmd/internal/buildid/buildid.go

    // ELF binaries store the build ID in a proper PT_NOTE section.
    //
    // Other binary formats are not so flexible. For those, the linker
    // stores the build ID as non-instruction bytes at the very beginning
    // of the text segment, which should appear near the beginning
    // of the file. This is clumsy but fairly portable. Custom locations
    // can be added for other binary types as needed, like we did for ELF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  2. common/scripts/gobuild.sh

    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    
    # gather buildinfo if not already provided
    # For a release build BUILDINFO should be produced
    # at the beginning of the build and used throughout
    if [[ -z ${BUILDINFO} ]];then
        BUILDINFO=$(mktemp)
        "${SCRIPTPATH}/report_build_info.sh" > "${BUILDINFO}"
    fi
    
    # BUILD LD_EXTRAFLAGS
    LD_EXTRAFLAGS=""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/normalization/RuntimeClasspathNormalization.java

     * automatically appended.</p>
     *
     * <p>Examples:</p>
     *
     * <pre>
     * all files ending with '.json' (including files in subdirectories)
     *    &#42;&#42;&#47;&#42;.json
     * </pre>
     *
     * <pre>
     * all files beginning with 'build-' in the level1/level2 directory
     *    level1/level2/build-&#42;
     * </pre>
     *
     * <pre>
     * all files (including subdirectories) beneath config/build-data
     *   config/build-data/
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifier.java

     * as artifact transformations may result in multiple artifacts with the same file name.
     *
     * <p>The original file name should refer to the name of the artifact at the beginning of the transform chain.</p>
     */
    public class TransformedComponentFileArtifactIdentifier implements ComponentArtifactIdentifier, DisplayName {
        private final ComponentIdentifier componentId;
        private final String fileName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 18:43:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    		}
    
    		if len(table.Rows) > 0 {
    			h.printedHeaders = true
    		}
    
    		if err := decorateTable(table, localOptions); err != nil {
    			return err
    		}
    		if len(eventType) > 0 {
    			if err := addColumns(beginning, table,
    				[]metav1.TableColumnDefinition{{Name: "Event", Type: "string"}},
    				[]cellValueFunc{func(metav1.TableRow) (interface{}, error) { return formatEventType(eventType), nil }},
    			); err != nil {
    				return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  6. src/net/textproto/writer.go

    		w.dot.Close() // sets w.dot = nil
    	}
    }
    
    type dotWriter struct {
    	w     *Writer
    	state int
    }
    
    const (
    	wstateBegin     = iota // initial state; must be zero
    	wstateBeginLine        // beginning of line
    	wstateCR               // wrote \r (possibly at end of line)
    	wstateData             // writing data in middle of line
    )
    
    func (d *dotWriter) Write(b []byte) (n int, err error) {
    	bw := d.w.W
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/debug/debug_options.proto

    //
    // Next ID: 9
    message DebugOptions {
      // If not empty, dumps MLIR to the specified directory. The initial state of
      // the MLIR after import will be dumped at the beginning of each pass manager
      // run. Additionally, MLIR will be dumped before and after each pass
      // depending on pass names and functions matched using the
      // `ir_dump_pass_regex` and `ir_dump_func_regex` values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testing.go

    // preceding the comment and the Error message is the comment text,
    // with all comments that are on the same line collected in a slice, in
    // source order. If there is no preceding token (the matching comment
    // appears at the beginning of the file), then the recorded position
    // is unknown (line, col = 0, 0). If there are no matching comments,
    // the result is nil.
    func CommentMap(src io.Reader, rx *regexp.Regexp) (res map[uint][]Error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/debug/elf/reader.go

    		return 0, os.ErrInvalid
    
    	case newOffset == 0:
    		r.r = nil
    
    	case newOffset == r.size:
    		r.r = errorReader{io.EOF}
    
    	default:
    		if newOffset < r.offset {
    			// Restart at the beginning.
    			r.start()
    		}
    		// Read until we reach offset.
    		var buf [512]byte
    		for r.offset < newOffset {
    			b := buf[:]
    			if newOffset-r.offset < int64(len(buf)) {
    				b = buf[:newOffset-r.offset]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_update_nolatest.txt

    env GOPROXY=$testproxy/invalid
    ! go list -m -u example.com/nolatest
    stderr '^go: loading module retractions for example.com/nolatest@v0.0.0: invalid response from proxy "[^"]*": invalid character ''i'' looking for beginning of value$'
    
    -- go.mod --
    module m
    
    go 1.17
    
    require (
    	example.com/nolatest v0.0.0
    	example.com/noversion v0.0.0
    )
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top