Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,100 for examine (0.19 sec)

  1. src/cmd/covdata/tool_test.go

    	lines := runToolOp(t, s, "merge", margs)
    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    	}
    
    	// Dump the files in the merged output dir and examine the result.
    	// We expect to see only the functions in package "dep".
    	dargs := []string{"-i=" + outdir}
    	lines = runToolOp(t, s, "debugdump", dargs)
    	if len(lines) == 0 {
    		t.Fatalf("dump run produced no output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    			}
    		}
    		return true
    	})
    }
    
    // forEachLastStmt calls onLast on each "last" statement in a list of statements.
    // "Last" is defined recursively so, for example, if the last statement is
    // a switch statement, then each switch case is also visited to examine
    // its last statements.
    func forEachLastStmt(stmts []ast.Stmt, onLast func(last ast.Stmt)) {
    	if len(stmts) == 0 {
    		return
    	}
    
    	s := stmts[len(stmts)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    	}
    
    	rdr := d.Reader()
    	ex := &dwtest.Examiner{}
    	if err := ex.Populate(rdr); err != nil {
    		t.Fatalf("error populating DWARF examiner for program %q: %v", source, err)
    	}
    
    	return d, ex
    }
    
    func findSubprogramDIE(t *testing.T, ex *dwtest.Examiner, sym string) *dwarf.Entry {
    	dies := ex.Named(sym)
    	if len(dies) == 0 {
    		t.Fatalf("unable to locate DIE for %s", sym)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AggregateFuture.java

             * where this isn't true, but we ignore it: If we record an exception, then someone calls
             * initCause() on it, and then we examine it again, we'll conclude that we've seen the whole
             * chain before when in fact we haven't. But this should be rare.)
             */
            return false;
          }
        }
        return true;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/offline-mode.apt

      having access to the versioning server. Therefore, it is assumed that
      any SCM-related activity will be unavailable when m2 is in offline
      mode.
    
    ** Maven-Core
    
      We'll examine the different parts of maven-core on a case-by-case
      basis, below:
    
    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

             * where this isn't true, but we ignore it: If we record an exception, then someone calls
             * initCause() on it, and then we examine it again, we'll conclude that we've seen the whole
             * chain before when in fact we haven't. But this should be rare.)
             */
            return false;
          }
        }
        return true;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    	}
    }
    
    // isEmptyGroup reports whether v is a group that has no attributes.
    func (v Value) isEmptyGroup() bool {
    	if v.Kind() != KindGroup {
    		return false
    	}
    	// We do not need to recursively examine the group's Attrs for emptiness,
    	// because GroupValue removed them when the group was constructed, and
    	// groups are immutable.
    	return len(v.group()) == 0
    }
    
    // append appends a text representation of v to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package elfexec provides utility routines to examine ELF binaries.
    package elfexec
    
    import (
    	"bufio"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"io"
    )
    
    const (
    	maxNoteSize        = 1 << 20 // in bytes
    	noteTypeGNUBuildID = 3
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    			t.Fatalf("failed to parse CPU profile summary in stderr: %v", err)
    		}
    		if pprofSamples == 0 {
    			t.Skip("CPU profile did not include any samples while tracing was active")
    		}
    
    		// Examine the execution tracer's view of the CPU profile samples. Filter it
    		// to only include samples from the single test goroutine. Use the goroutine
    		// ID that was recorded in the events: that should reflect getg().m.curg,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // locateBinaries searches for binary files listed in the profile and, if found,
    // updates the profile accordingly.
    func locateBinaries(p *profile.Profile, s *source, obj plugin.ObjTool, ui plugin.UI) {
    	// Construct search path to examine
    	searchPath := os.Getenv("PPROF_BINARY_PATH")
    	if searchPath == "" {
    		// Use $HOME/pprof/binaries as default directory for local symbolization binaries
    		searchPath = filepath.Join(os.Getenv(homeEnv()), "pprof", "binaries")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top