Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for Pid (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    			},
    			nil,
    			&runtimeapi.NamespaceOption{
    				Pid: runtimeapi.NamespaceMode_CONTAINER,
    			},
    		},
    		{
    			"PID Namespace POD",
    			&v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Name: "test"},
    					},
    					ShareProcessNamespace: &[]bool{true}[0],
    				},
    			},
    			nil,
    			&runtimeapi.NamespaceOption{
    				Pid: runtimeapi.NamespaceMode_POD,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

            ProcessMetaDataProvider metaDataProvider = new ProcessMetaDataProvider() {
                @Override
                public String getProcessIdentifier() {
                    // TODO Inject actual PID
                    return "PID";
                }
    
                @Override
                public String getProcessDisplayName() {
                    return "build-cache-example-client";
                }
            };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_ppc64x.s

    	SYSCALL	$SYS_getpid
    	MOVW	R3, R14
    	SYSCALL	$SYS_gettid
    	MOVW	R3, R4	// arg 2 tid
    	MOVW	R14, R3	// arg 1 pid
    	MOVW	sig+0(FP), R5	// arg 3
    	SYSCALL	$SYS_tgkill
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	SYSCALL	$SYS_getpid
    	MOVW	R3, R3	// arg 1 pid
    	MOVW	sig+0(FP), R4	// arg 2
    	SYSCALL	$SYS_kill
    	RET
    
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	SYSCALL $SYS_getpid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            UUID buildId = idGenerator.generateId();
            List<DaemonInitialConnectException> accumulatedExceptions = new ArrayList<>();
    
            LOGGER.debug("Executing build {} in daemon client {pid={}}", buildId, processEnvironment.maybeGetPid());
    
            // Attempt to connect to an existing idle and compatible daemon
            int saneNumberOfAttempts = 100; //is it sane enough?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/internal/trace/generation.go

    		if err != nil {
    			return nil, err
    		}
    		mid := ThreadID(m)
    
    		// Read the sample's P.
    		p, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		pid := ProcID(p)
    
    		// Read the sample's G.
    		g, err := binary.ReadUvarint(r)
    		if err != nil {
    			return nil, err
    		}
    		goid := GoID(g)
    		if g == 0 {
    			goid = NoGoroutine
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		Resources:       m.generateLinuxContainerResources(pod, container, enforceMemoryQoS),
    		SecurityContext: sc,
    	}
    
    	if nsTarget != nil && lc.SecurityContext.NamespaceOptions.Pid == runtimeapi.NamespaceMode_CONTAINER {
    		lc.SecurityContext.NamespaceOptions.Pid = runtimeapi.NamespaceMode_TARGET
    		lc.SecurityContext.NamespaceOptions.TargetId = nsTarget.ID
    	}
    
    	return lc, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

      # wait till they are provisioned successfully.
      declare -a DEPLOY_KIND_JOBS
      for i in "${!CLUSTER_NAMES[@]}"; do
        deploy_kind "${i}" & DEPLOY_KIND_JOBS+=("${!}")
      done
    
      for pid in "${DEPLOY_KIND_JOBS[@]}"; do
        wait "${pid}" || exit 1
      done
    
      # Install MetalLB for LoadBalancer support. Must be done synchronously since METALLB_IPS is shared.
      # and keep track of the list of Kubeconfig files that will be exported later
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pom.xml

    		<packaging.fess.user>fess</packaging.fess.user>
    		<packaging.fess.group>fess</packaging.fess.group>
    		<packaging.fess.pid.dir>/var/run/fess</packaging.fess.pid.dir>
    		<packaging.fess.systemd.dir>/usr/lib/systemd/system</packaging.fess.systemd.dir>
    		<packaging.fess.systemd.sysctl.dir>/usr/lib/sysctl.d</packaging.fess.systemd.sysctl.dir>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    class JavaProcessStackTracesMonitorSpec extends Specification {
    
        @Requires(UnitTestPreconditions.NotWindows)
        def 'can extract process info from unix ps()'() {
            given:
            def output = '''
              PID TTY      STAT   TIME COMMAND
     1401 ?        Ss     0:05 /lib/systemd/systemd --user
     1409 ?        S      0:00 (sd-pam)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.Var(cliflag.NewMapStringString(&c.SystemReserved), "system-reserved", "A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=500Mi,ephemeral-storage=1Gi,pid=1000) pairs that describe resources reserved for non-kubernetes components. Currently only cpu, memory, pid and local ephemeral storage for root file system are supported. See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ for more detail. [default=none]")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top