Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 888 for proc (0.04 sec)

  1. src/internal/trace/traceviewer/http.go

    	{{end}}
    </ul>
    {{else}}
    <ul>
    	<li><a href="{{$view.URL -1}}">View trace by {{$view.Type}}</a></li>
    </ul>
    {{end}}
    {{end}}
    <p>
      This view displays a series of timelines for a type of resource.
      The "by proc" view consists of a timeline for each of the GOMAXPROCS
      logical processors, showing which goroutine (if any) was running on that
      logical processor at each moment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/packaging/deb/init.d/fess

    	fi
    
    	if [ -n "$MAX_OPEN_FILES" ]; then
    		ulimit -n $MAX_OPEN_FILES
    	fi
    
    	if [ -n "$MAX_LOCKED_MEMORY" ]; then
    		ulimit -l $MAX_LOCKED_MEMORY
    	fi
    
    	if [ -n "$MAX_MAP_COUNT" -a -f /proc/sys/vm/max_map_count ]; then
    		sysctl -q -w vm.max_map_count=$MAX_MAP_COUNT
    	fi
    
    	# Start Daemon
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // ParseMemoryMap parses a memory map in the format of
    // /proc/self/maps, and overrides the mappings in the current profile.
    // It renumbers the samples and locations in the profile correspondingly.
    func (p *Profile) ParseMemoryMap(rd io.Reader) error {
    	return p.ParseMemoryMapFromScanner(bufio.NewScanner(rd))
    }
    
    // ParseMemoryMapFromScanner parses a memory map in the format of
    // /proc/self/maps or a variety of legacy format, and overrides the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  4. src/sync/mutex_test.go

    				<-c
    			}
    		}
    	})
    }
    
    func BenchmarkMutexSpin(b *testing.B) {
    	// This benchmark models a situation where spinning in the mutex should be
    	// profitable. To achieve this we create a goroutine per-proc.
    	// These goroutines access considerable amount of local data so that
    	// unnecessary rescheduling is penalized by cache misses.
    	var m Mutex
    	var acc0, acc1 uint64
    	b.RunParallel(func(pb *testing.PB) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    )
    
    const (
    	// LoopbackInterfaceName is the default name of the loopback interface
    	LoopbackInterfaceName = "lo"
    )
    
    const (
    	ipv4RouteFile = "/proc/net/route"
    	ipv6RouteFile = "/proc/net/ipv6_route"
    )
    
    type Route struct {
    	Interface   string
    	Destination net.IP
    	Gateway     net.IP
    	Family      AddressFamily
    }
    
    type RouteFile struct {
    	name  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	P_addr      uintptr
    	P_xstat     uint16
    	P_acflag    uint16
    	P_ru        *Rusage
    }
    
    type Itimerval struct {
    	Interval Timeval
    	Value    Timeval
    }
    
    type KinfoProc struct {
    	Proc  ExternProc
    	Eproc Eproc
    }
    
    type Vmspace struct {
    	Dummy  int32
    	Dummy2 *int8
    	Dummy3 [5]int32
    	Dummy4 [3]*int8
    }
    
    type Pcred struct {
    	Pc_lock  [72]int8
    	Pc_ucred uintptr
    	P_ruid   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    File system watching uses one inotify watch per watched directory.
    You can see the current limit of inotify watches per user by running:
    
    [source,bash]
    ----
    cat /proc/sys/fs/inotify/max_user_watches
    ----
    
    To increase the limit to e.g. 512K watches run the following:
    
    [source,bash]
    ----
    echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/server.go

    		return nil, fmt.Errorf("error initializing the host rules for health checks: %w", err)
    	}
    
    	podNetns := NewPodNetnsProcFinder(os.DirFS(filepath.Join(pconstants.HostMountsPath, "proc")))
    	netServer := newNetServer(ztunnelServer, podNsMap, iptablesConfigurator, podNetns, set)
    
    	// Set some defaults
    	s := &Server{
    		ctx:        ctx,
    		kubeClient: client,
    		isReady:    ready,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/runtime/tracestatus.go

    	// The status should never be bad. Some invariant must have been violated.
    	if status == traceProcBad {
    		print("runtime: pid=", pid, "\n")
    		throw("attempted to trace a bad status for a proc")
    	}
    
    	// Trace the status.
    	w = w.event(traceEvProcStatus, traceArg(pid), traceArg(status))
    
    	// Trace any special ranges that are in-progress.
    	if inSweep {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/runtime/os_linux.go

    		return
    	}
    	// In some situations we don't get a loader-provided
    	// auxv, such as when loaded as a library on Android.
    	// Fall back to /proc/self/auxv.
    	fd := open(&procAuxv[0], 0 /* O_RDONLY */, 0)
    	if fd < 0 {
    		// On Android, /proc/self/auxv might be unreadable (issue 9229), so we fallback to
    		// try using mincore to detect the physical page size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top