Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for approx (0.13 sec)

  1. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: ["certificates.k8s.io"]
        resources:
          - "signers"
        resourceNames:
    {{- range .Values.global.certSigners }}
        - {{ . | quote }}
    {{- end }}
        verbs: ["approve"]
    {{- end}}
    
      # Used by Istiod to verify the JWT tokens
      - apiGroups: ["authentication.k8s.io"]
        resources: ["tokenreviews"]
        verbs: ["create"]
    
      # Used by Istiod to verify gateway SDS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/templates/daemonset.yaml

          - name: cni-ztunnel-sock-dir
            hostPath:
              path: /var/run/ztunnel
              type: DirectoryOrCreate # ideally this would be a socket, but ztunnel may not have started yet.
          # pprof needs a writable /tmp, and we don't have that thanks to `readOnlyRootFilesystem: true`, so mount one
          - name: tmp
            emptyDir: {}
          {{- with .Values.volumes }}
            {{- toYaml . | nindent 6}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    // Package measurement export utility functions to manipulate/format performance profile sample values.
    package measurement
    
    import (
    	"fmt"
    	"math"
    	"strings"
    	"time"
    
    	"github.com/google/pprof/profile"
    )
    
    // ScaleProfiles updates the units in a set of profiles to make them
    // compatible. It scales the profiles to the smallest unit to preserve
    // data.
    func ScaleProfiles(profiles []*profile.Profile) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/cmd/pilot-discovery/app/cmd.go

    		"HTTP address to use for pilot's self-monitoring information")
    	c.PersistentFlags().BoolVar(&serverArgs.ServerOptions.EnableProfiling, "profile", true,
    		"Enable profiling via web interface host:port/debug/pprof")
    
    	// Use TLS certificates if provided.
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.CaCertFile, "caCertFile", "",
    		"File containing the x509 Server CA Certificate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. docs/en/docs/fastapi-people.md

    ## Top Translation Reviewers
    
    These users are the **Top Translation Reviewers**. 🕵️
    
    I only speak a few languages (and not very well 😅). So, the reviewers are the ones that have the [**power to approve translations**](contributing.md#translations){.internal-link target=_blank} of the documentation. Without them, there wouldn't be documentation in several other languages.
    
    {% if people %}
    <div class="user-list user-list-center">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top