Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for proc (0.23 sec)

  1. src/cmd/trace/goroutinegen.go

    }
    
    func (g *goroutineGenerator) ProcRange(ctx *traceContext, ev *trace.Event) {
    	// TODO(mknyszek): Extend procRangeGenerator to support rendering proc ranges
    	// that overlap with a goroutine's execution.
    }
    
    func (g *goroutineGenerator) ProcTransition(ctx *traceContext, ev *trace.Event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/conntrack.go

    		logger.Info("Set sysctl", "entry", entry, "value", value)
    		if err := sys.SetSysctl(entry, value); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // isSysFSWritable checks /proc/mounts to see whether sysfs is 'rw' or not.
    func (rct realConntracker) isSysFSWritable(ctx context.Context) (bool, error) {
    	logger := klog.FromContext(ctx)
    	const permWritable = "rw"
    	const sysfsDevice = "sysfs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/volume/nfs/nfs.go

    	*nfs
    }
    
    func (c *nfsUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    func (c *nfsUnmounter) TearDownAt(dir string) error {
    	// Use extensiveMountPointCheck to consult /proc/mounts. We can't use faster
    	// IsLikelyNotMountPoint (lstat()), since there may be root_squash on the
    	// NFS server and kubelet may not be able to do lstat/stat() there.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    }
    
    // eventWriter creates a new traceEventWriter. It is the main entrypoint for writing trace events.
    //
    // Before creating the event writer, this method will emit a status for the current goroutine
    // or proc if it exists, and if it hasn't had its status emitted yet. goStatus and procStatus indicate
    // what the status of goroutine or P should be immediately *before* the events that are about to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-annotations.test

    String id=50
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2cpu.go"
    String id=51
    	data="runtime.startTheWorld"
    String id=52
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go"
    String id=53
    	data="runtime/trace.(*Task).End"
    String id=54
    	data="runtime.traceLocker.Gomaxprocs"
    String id=55
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2runtime.go"
    String id=56
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/main/proguard/wrapper.pro

    Adam Murdoch <******@****.***> 1715814876 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 147 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo.txt

    go build -x -pgo=prof -o triv.exe triv.go
    ! stderr 'compile.*triv.go'
    
    # check that the build ID is the same
    go list -export -json=BuildID -pgo=prof triv.go
    cmp stdout list.out
    
    # overwrite the prof
    go run overwrite.go
    
    # build again, profile content changed, should trigger rebuild, including std
    go build -n -pgo=prof triv.go
    stderr 'preprofile.*-i.*prof'
    stderr 'compile.*-pgoprofile=.*triv.go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/math/big/floatexample_test.go

    	z.Add(&x, &y)
    	fmt.Printf("x = %.10g (%s, prec = %d, acc = %s)\n", &x, x.Text('p', 0), x.Prec(), x.Acc())
    	fmt.Printf("y = %.10g (%s, prec = %d, acc = %s)\n", &y, y.Text('p', 0), y.Prec(), y.Acc())
    	fmt.Printf("z = %.10g (%s, prec = %d, acc = %s)\n", &z, z.Text('p', 0), z.Prec(), z.Acc())
    	// Output:
    	// x = 1000 (0x.fap+10, prec = 64, acc = Exact)
    	// y = 2.718281828 (0x.adf85458248cd8p+2, prec = 53, acc = Exact)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top