Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 133 for approx (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          return Class.forName("com.google.apphosting.api.ApiProxy")
                  .getMethod("getCurrentEnvironment")
                  .invoke(null)
              != null;
        } catch (ClassNotFoundException e) {
          // If ApiProxy doesn't exist, we're not on AppEngine at all.
          return false;
        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. src/cmd/objdump/main.go

    //	 address: assembly
    //	 ...
    //
    // Each stanza gives the disassembly for a contiguous range of addresses
    // all mapped to the same original source file and line number.
    // This mode is intended for use by pprof.
    package main
    
    import (
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/runtime/pprof/protomem.go

    // Copyright 2016 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.
    
    package pprof
    
    import (
    	"internal/profilerecord"
    	"io"
    	"math"
    	"runtime"
    	"strings"
    )
    
    // writeHeapProto writes the current heap profile in protobuf format to w.
    func writeHeapProto(w io.Writer, p []profilerecord.MemProfileRecord, rate int64, defaultSampleType string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/runtime/tracecpu.go

    			// Sleep here because traceReadCPU is non-blocking. This mirrors
    			// how the runtime/pprof package obtains CPU profile data.
    			//
    			// We can't do a blocking read here because Darwin can't do a
    			// wakeup from a signal handler, so all CPU profiling is just
    			// non-blocking. See #61768 for more details.
    			//
    			// Like the runtime/pprof package, even if that bug didn't exist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    // limitations under the License.
    
    package binutils
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os/exec"
    	"strconv"
    	"strings"
    	"sync"
    
    	"github.com/google/pprof/internal/plugin"
    )
    
    const (
    	defaultLLVMSymbolizer = "llvm-symbolizer"
    )
    
    // llvmSymbolizer is a connection to an llvm-symbolizer command for
    // obtaining address and line number information from a binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

    <div class="header">
      <div class="title">
        <h1><a href="./">pprof</a></h1>
      </div>
    
      <div id="view" class="menu-item">
        <div class="menu-name">
          View
          <i class="downArrow"></i>
        </div>
        <div class="submenu">
          <a title="{{.Help.top}}"  href="./top" id="topbtn">Top</a>
          <a title="{{.Help.graph}}" href="./" id="graphbtn">Graph</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/istioctl_test.go

    			}, "testdata/authz-b.yaml").ApplyOrFail(t)
    
    			gwPod, err := i.IngressFor(t.Clusters().Default()).PodID(0)
    			if err != nil {
    				t.Fatalf("Could not get Pod ID: %v", err)
    			}
    			appPod, err := getPodID(apps.A[0])
    			if err != nil {
    				t.Fatalf("Could not get Pod ID: %v", err)
    			}
    
    			cases := []struct {
    				name  string
    				pod   string
    				wants []*regexp.Regexp
    			}{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    		f, err := os.Create(*cpuprofile)
    		if err != nil {
    			s.AddReport(fmt.Errorf("creating cpu profile: %s", err))
    			return
    		}
    		defer func() {
    			f.Close()
    			<-fdSem
    		}()
    		pprof.StartCPUProfile(f)
    		defer pprof.StopCPUProfile()
    	}
    
    	initParserMode()
    	initRewrite()
    
    	args := flag.Args()
    	if len(args) == 0 {
    		if *write {
    			s.AddReport(fmt.Errorf("error: cannot use -w with standard input"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/crypto/aes/asm_ppc64x.s

    // # ====================================================================
    // # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    // # CRYPTOGAMS licenses depending on where you obtain it. For further
    // # details see http://www.openssl.org/~appro/cryptogams/.
    // # ====================================================================
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    }
    func issetugid_trampoline()
    
    // mach_vm_region is used to obtain virtual memory mappings for use by the
    // profiling system and is only exported to runtime/pprof. It is restricted
    // to obtaining mappings for the current process.
    //
    //go:linkname mach_vm_region runtime/pprof.mach_vm_region
    func mach_vm_region(address, region_size *uint64, info unsafe.Pointer) int32 {
    	// kern_return_t mach_vm_region(
    	// 	vm_map_read_t target_task,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top