Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 903 for prof (0.1 sec)

  1. tests/test_openapi_servers.py

                    "description": "Staging but actually localhost still",
                },
                {
                    "url": IsOneOf(
                        "https://prod.example.com/",
                        # TODO: remove when deprecating Pydantic v1
                        "https://prod.example.com",
                    )
                },
            ],
            "paths": {
                "/foo": {
                    "get": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    	return "Bad"
    }
    
    // ProcState represents the state of a proc.
    //
    // New ProcStates may be added in the future. Users of this type must be robust
    // to that possibility.
    type ProcState uint8
    
    const (
    	ProcUndetermined ProcState = iota // No information is known about the proc.
    	ProcNotExist                      // Proc does not exist.
    	ProcRunning                       // Proc is running.
    	ProcIdle                          // Proc is idle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    [registry.k8s.io/kube-apiserver:v...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  4. src/packaging/rpm/init.d/fess

    fi
    
    exec="$FESS_HOME/bin/fess"
    prog="fess"
    pidfile="$PID_DIR/${prog}.pid"
    
    export FESS_TEMP_PATH
    export FESS_LOG_PATH
    export FESS_CONF_PATH
    export FESS_VAR_PATH
    export FESS_DICTIONARY_PATH
    export FESS_HEAP_SIZE
    export SEARCH_ENGINE_HOME
    export SEARCH_ENGINE_HTTP_URL
    export FESS_JAVA_OPTS
    export JAVA_HOME
    
    lockfile=/var/lock/subsys/$prog
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/vdso.go

    package main
    
    import (
    	"fmt"
    	"os"
    	"runtime/pprof"
    	"time"
    )
    
    func init() {
    	register("SignalInVDSO", signalInVDSO)
    }
    
    func signalInVDSO() {
    	f, err := os.CreateTemp("", "timeprofnow")
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(2)
    	}
    
    	if err := pprof.StartCPUProfile(f); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(2)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 30 16:04:50 UTC 2022
    - 1005 bytes
    - Viewed (0)
  6. src/syscall/exec_unix_test.go

    	c.pipe.Close()
    	if err := c.proc.Wait(); err != nil {
    		c.test.Fatal(err)
    	}
    }
    
    func create(t *testing.T) *command {
    	testenv.MustHaveExec(t)
    
    	proc := exec.Command("cat")
    	stdin, err := proc.StdinPipe()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	return &command{stdin, proc, t}
    }
    
    func parent() (pid, pgrp int) {
    	return syscall.Getpid(), syscall.Getpgrp()
    }
    
    func TestZeroSysProcAttr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTaskTest.groovy

        @Issue("gradle/gradle#8996")
        def "stacktrace contains root cause"() {
            given:
            def proc = new AnnotationProcessorDeclaration(processorClassName, IncrementalAnnotationProcessorType.UNKNOWN)
            def processTask = createProcessingTask(proc)
    
            when:
            processTask.call()
    
            then:
            def e = thrown(Throwable)
            def root = Throwables.getRootCause(e)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/trace/doc.go

    Trace files can be generated with:
      - runtime/trace.Start
      - net/http/pprof package
      - go test -trace
    
    Example usage:
    Generate a trace file with 'go test':
    
    	go test -trace trace.out pkg
    
    View the trace in a web browser:
    
    	go tool trace trace.out
    
    Generate a pprof-like profile from the trace:
    
    	go tool trace -pprof=TYPE trace.out > TYPE.pprof
    
    Supported profile types are:
      - net: network blocking profile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/pidlimit/pidlimit_linux.go

    	// Example: 1.36 3.49 4.53 2/3518 3715089
    	bytes, err := os.ReadFile("/proc/loadavg")
    	if err != nil {
    		return 0, err
    	}
    	fields := strings.Fields(string(bytes))
    	if len(fields) < 5 {
    		return 0, fmt.Errorf("not enough fields in /proc/loadavg")
    	}
    	subfields := strings.Split(fields[3], "/")
    	if len(subfields) != 2 {
    		return 0, fmt.Errorf("error parsing fourth field of /proc/loadavg")
    	}
    	return strconv.ParseInt(subfields[1], 10, 64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:24:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/reference-grant.yaml

    #$ Used in:
    #$ - site-src/concepts/security-model.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-prod-traffic
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: HTTPRoute
        namespace: prod
      to:
      - group: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 286 bytes
    - Viewed (0)
Back to top