Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for processDest (0.61 sec)

  1. cmd/kubelet/app/server.go

    	return &kubelet.Dependencies{
    		Auth:                nil, // default does not enforce auth[nz]
    		CAdvisorInterface:   nil, // cadvisor.New launches background processes (bg http.ListenAndServe, and some bg cleaners), not set here
    		Cloud:               nil, // cloud provider might start background processes
    		ContainerManager:    nil,
    		KubeClient:          nil,
    		HeartbeatClient:     nil,
    		EventClient:         nil,
    		TracerProvider:      tp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Restarts the service, or starts it if it is not currently
    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
      # Wait (if necessary) for service to stop.
      $timeout = 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

      [[ -n "${ETCD_PID-}" ]] && kube::etcd::stop
      if [[ "${PRESERVE_ETCD}" == "false" ]]; then
        [[ -n "${ETCD_DIR-}" ]] && kube::etcd::clean_etcd_dir
      fi
    
      exit 0
    }
    
    # Check if all processes are still running. Prints a warning once each time
    # a process dies unexpectedly.
    function healthcheck {
      if [[ -n "${APISERVER_PID-}" ]] && ! sudo kill -0 "${APISERVER_PID}" 2>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	//
    	// This is currently 64MB on 64-bit non-Windows and 4MB on
    	// 32-bit and on Windows. We use smaller arenas on Windows
    	// because all committed memory is charged to the process,
    	// even if it's not touched. Hence, for processes with small
    	// heaps, the mapped arena space needs to be commensurate.
    	// This is particularly important with the race detector,
    	// since it significantly amplifies the cost of committed
    	// memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Using unsupported API to start external processes at configuration time is no longer allowed with the configuration cache enabled
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    			WeightedClusters: &route.WeightedCluster{
    				Clusters: weighted,
    			},
    		}
    	}
    	action.RetryPolicy = retry.ConvertPolicy(policy, consistentHash)
    	return hostnames
    }
    
    // processDestination processes a single destination in a route. It specifies to which cluster the route should
    // be routed to. It also sets the headers and hash policy if specified.
    // Returns the hostname of the destination.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. src/syscall/zerrors_solaris_amd64.go

    	4:   "interrupted system call",
    	5:   "I/O error",
    	6:   "no such device or address",
    	7:   "arg list too long",
    	8:   "exec format error",
    	9:   "bad file number",
    	10:  "no child processes",
    	11:  "resource temporarily unavailable",
    	12:  "not enough space",
    	13:  "permission denied",
    	14:  "bad address",
    	15:  "block device required",
    	16:  "device busy",
    	17:  "file exists",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    			}
    			m, b = 1, b[1:]
    		}
    	}
    
    	n, err := c.writeRecordLocked(recordTypeApplicationData, b)
    	return n + m, c.out.setErrorLocked(err)
    }
    
    // handleRenegotiation processes a HelloRequest handshake message.
    func (c *Conn) handleRenegotiation() error {
    	if c.vers == VersionTLS13 {
    		return errors.New("tls: internal error: unexpected renegotiation")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Insert ops on the host side computation to receive data from device.
      // host0_ops are the ops that will make up the first host process. In the
      // map_outside_compilation case, there are multiple host processes, which will
      // be created by cloning.
      SmallVector<Operation*, 4> host0_ops;
      Operation* recv_at_host = CreateHostOps(
          clustered_ops, external_operands, external_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. src/time/format.go

    		yday       int = -1
    		hour       int
    		min        int
    		sec        int
    		nsec       int
    		z          *Location
    		zoneOffset int = -1
    		zoneName   string
    	)
    
    	// Each iteration processes one std value.
    	for {
    		var err error
    		prefix, std, suffix := nextStdChunk(layout)
    		stdstr := layout[len(prefix) : len(layout)-len(suffix)]
    		value, err = skip(value, prefix)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top