Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for processDest (0.17 sec)

  1. src/syscall/exec_linux.go

    // copied from linux/sched.h.
    const (
    	CLONE_VM             = 0x00000100 // set if VM shared between processes
    	CLONE_FS             = 0x00000200 // set if fs info shared between processes
    	CLONE_FILES          = 0x00000400 // set if open files shared between processes
    	CLONE_SIGHAND        = 0x00000800 // set if signal handlers and blocked signals shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * That way other processes can read our details and ping us. That is important for {@link LockMode#OnDemand} mode.<br>
             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/internal/fuzz/worker.go

    	memMu           chan *sharedMem // mutex guarding shared memory
    }
    
    // workerServer is a minimalist RPC server, run by fuzz worker processes.
    // It allows the coordinator process (using workerClient) to call methods in a
    // worker process. This system allows the coordinator to run multiple worker
    // processes in parallel and to collect inputs that caused crashes from shared
    // memory after a worker process terminates unexpectedly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    			return false
    		}
    		// There's a possible race here where two processes check the
    		// token file and see that it's older than the period, then the
    		// first one removes it and creates another, and then a second one
    		// removes the newly created file and creates yet another
    		// file. Then both processes would act as though they had the token.
    		// This is very rare, but it's also okay because we're only grabbing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/helper.go

    	return result
    }
    
    func cadvisorInfoToProcessStats(info *cadvisorapiv2.ContainerInfo) *statsapi.ProcessStats {
    	cstat, found := latestContainerStats(info)
    	if !found || cstat.Processes == nil {
    		return nil
    	}
    	num := cstat.Processes.ProcessCount
    	return &statsapi.ProcessStats{ProcessCount: uint64Ptr(num)}
    }
    
    // cadvisorInfoToNetworkStats returns the statsapi.NetworkStats converted from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. cluster/log-dump/log-dump.sh

        # take much longer than the others, but it should help.
        proc=$((proc - 1))
        if [[ proc -eq 0 ]]; then
          proc=${max_dump_processes}
          wait
        fi
      done
      # Wait for any remaining processes.
      if [[ proc -gt 0 && proc -lt ${max_dump_processes} ]]; then
        wait
      fi
    }
    
    # Dumps logs from nodes in the cluster. Linux nodes to dump logs from can be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/https.md

    ### TLS with SNI Extension
    
    **Only one process** in the server can be listening on a specific **port** in a specific **IP address**. There could be other processes listening on other ports in the same IP address, but only one for each combination of IP address and port.
    
    TLS (HTTPS) uses the specific port `443` by default. So that's the port we would need.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/syscall/tables_js.go

    	E2BIG           Errno = 7       /* Argument list too long */
    	ENOEXEC         Errno = 8       /* Exec format error */
    	EBADF           Errno = 9       /* Bad file number */
    	ECHILD          Errno = 10      /* No child processes */
    	EAGAIN          Errno = 11      /* Try again */
    	ENOMEM          Errno = 12      /* Out of memory */
    	EACCES          Errno = 13      /* Permission denied */
    	EFAULT          Errno = 14      /* Bad address */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  9. pkg/controller/servicecidrs/servicecidrs_controller.go

    		serviceCIDRs = append(serviceCIDRs, v.UnsortedList()...)
    	}
    
    	return serviceCIDRs
    }
    
    func (c *Controller) worker(ctx context.Context) {
    	for c.processNext(ctx) {
    	}
    }
    
    func (c *Controller) processNext(ctx context.Context) bool {
    	key, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	defer c.queue.Done(key)
    
    	err := c.sync(ctx, key)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

     */
    public abstract class JavaPlugin implements Plugin<Project> {
        /**
         * The name of the task that processes resources.
         */
        public static final String PROCESS_RESOURCES_TASK_NAME = JvmConstants.PROCESS_RESOURCES_TASK_NAME;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top