Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for comdats (0.32 sec)

  1. src/cmd/link/internal/loadpe/ldpe.go

    // gathers information about COMDAT sections/symbols for later use
    // in readpesym().
    func (state *peLoaderState) preprocessSymbols() error {
    
    	// Locate comdat sections.
    	state.comdats = make(map[uint16]int64)
    	for i, s := range state.f.Sections {
    		if s.Characteristics&uint32(pe.IMAGE_SCN_LNK_COMDAT) != 0 {
    			state.comdats[uint16(i)] = int64(s.Size)
    		}
    	}
    
    	// Examine symbol defs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. src/cmd/covdata/covdata.go

    	}
    
    	// Edit out command selector, then parse flags.
    	os.Args = append(os.Args[:1], os.Args[2:]...)
    	flag.Usage = func() {
    		op.Usage("")
    	}
    	flag.Parse()
    	telemetry.Inc("covdata/invocations")
    	telemetry.CountFlags("covdata/flag:", *flag.CommandLine)
    
    	// Mode-independent flag setup
    	dbgtrace(1, "starting mode-independent setup")
    	if flag.NArg() != 0 {
    		op.Usage("unknown extra arguments")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/go/parser/testdata/commas.src

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for error messages/parser synchronization
    // after missing commas.
    
    package p
    
    var _ = []int{
    	0/* ERROR AFTER "missing ','" */
    }
    
    var _ = []int{
    	0,
    	1,
    	2,
    	3/* ERROR AFTER "missing ','" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 367 bytes
    - Viewed (0)
  4. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>commits******@****.***</subscribe>
          <unsubscribe>commits******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-commits</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/commits@maven.apache.org</otherArchive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>commits******@****.***</subscribe>
          <unsubscribe>commits******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-commits</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/commits@maven.apache.org</otherArchive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

        </mailingList>
        <mailingList>
          <name>Maven Commits List</name>
          <subscribe>commits******@****.***</subscribe>
          <unsubscribe>commits******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-commits</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/commits@maven.apache.org</otherArchive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # Collect a coverage profile from running 'cmd/nm' on the object.
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/nm.exe tiny.o
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Check to make sure we instrumented just the main package, not
    # any dependencies.
    go tool covdata pkglist -i=$WORK/covdata
    stdout cmd/nm
    ! stdout cmd/internal/goobj pkglist.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_main_import_path.txt

    go build -cover -o $WORK/prog.exe .
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/prog.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Report percent lines covered.
    go tool covdata percent -i=$WORK/covdata
    stdout '\s*mainwithtest\s+coverage:'
    ! stdout 'main\s+coverage:'
    
    # Go test -cover should behave the same way.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    exec $WORK/modex.exe
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Examine the result.
    go tool covdata percent -i=$WORK/covdata
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # The whole enchilada.
    go tool covdata textfmt -i=$WORK/covdata -o=$WORK/covdata/out.txt
    grep 'mode: set' $WORK/covdata/out.txt
    grep 'mod.example/main/main.go:' $WORK/covdata/out.txt
    grep 'mod.example/sub/sub.go:' $WORK/covdata/out.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                    .collect(Collectors.toList());
        }
    
        private Map<String, Lifecycle> lookupLifecycles() {
            // TODO: Remove the following code when maven-compat is gone
            // This code is here to ensure maven-compat's EmptyLifecycleExecutor keeps on working.
            if (lookup == null) {
                return customLifecycles != null ? customLifecycles : new HashMap<>();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top