Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 432 for proc (0.04 sec)

  1. 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)
  2. pkg/kubelet/prober/scale_test.go

    // that the ephemeral port is not exhausted.
    
    // The default port range on a normal Linux system has 28321 free ephemeral ports per
    // tuple srcIP,srcPort:dstIP:dstPort:Proto: /proc/sys/net/ipv4/ip_local_port_range 32768 60999
    // 1 pods x 600 containers/pod x 1 probes/container x 1 req/sec = 600 req/sec
    // 600 req/sec x 59 sec = 35400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. src/crypto/x509/pem_decrypt.go

    	for i := 0; i < pad; i++ {
    		encrypted = append(encrypted, byte(pad))
    	}
    	enc.CryptBlocks(encrypted, encrypted)
    
    	return &pem.Block{
    		Type: blockType,
    		Headers: map[string]string{
    			"Proc-Type": "4,ENCRYPTED",
    			"DEK-Info":  ciph.name + "," + hex.EncodeToString(iv),
    		},
    		Bytes: encrypted,
    	}, nil
    }
    
    func cipherByName(name string) *rfc1423Algo {
    	for i := range rfc1423Algos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/poll/splice_linux.go

    	// the kernel to move in a single call to splice(2).
    	// We use 1MB as Splice writes data through a pipe, and 1MB is the default maximum pipe buffer size,
    	// which is determined by /proc/sys/fs/pipe-max-size.
    	maxSpliceSize = 1 << 20
    )
    
    // Splice transfers at most remain bytes of data from src to dst, using the
    // splice system call to minimize copies of data from and to userspace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K 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. src/regexp/syntax/prog.go

    package syntax
    
    import (
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Compiled program.
    // May not belong in this package, but convenient for now.
    
    // A Prog is a compiled regular expression program.
    type Prog struct {
    	Inst   []Inst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_test_localpkg_filepath.txt

    [short] skip
    
    # collect coverage profile in text format
    go test -coverprofile=blah.prof prog.go prog_test.go
    
    # should not contain cmd-line pseudo-import-path
    grep prog.go blah.prof
    grep $PWD blah.prof
    ! grep command-line-arguments blah.prof
    
    -- prog.go --
    package main
    
    func Mumble(x int) int {
    	if x < 0 {
    		return -x
    	}
    	return 42
    }
    
    func Grumble(y int) int {
    	return -y
    }
    
    func main() {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:11:54 UTC 2022
    - 571 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompilerTest.groovy

            given:
            def proc1 = Stub(AnnotationProcessorDeclaration)
            def proc2 = Stub(AnnotationProcessorDeclaration)
            detector.detectProcessors(_) >> [
                "Foo": proc1,
                "Bar": proc2
            ]
    
            when:
            compiler.execute(spec)
    
            then:
            spec.effectiveAnnotationProcessors == [proc1, proc2] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top