Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for processDest (0.12 sec)

  1. src/cmd/go/alldocs.go

    //
    // specifies that the command "foo" represents the generator
    // "go tool foo".
    //
    // Generate processes packages in the order given on the command line,
    // one at a time. If the command line lists .go files from a single directory,
    // they are treated as a single package. Within a package, generate processes the
    // source files in a package in file name order, one at a time. Within
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // rstAvoidanceDelay is the amount of time we sleep after closing the
    // write side of a TCP connection before closing the entire socket.
    // By sleeping, we increase the chances that the client sees our FIN
    // and processes its final data before they process the subsequent RST
    // from closing a connection with known unread data.
    // This RST seems to occur mostly on BSD systems. (And Windows?)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			}
    			continue
    		}
    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      fi
      iptables -w -t mangle -I OUTPUT -s 169.254.169.254 -j DROP
    
      # Log all metadata access not from approved processes.
      case "${METADATA_SERVER_FIREWALL_MODE:-off}" in
        log)
          echo "Installing metadata firewall logging rules"
          gce-metadata-fw-helper -I LOG "MetadataServerFirewallReject" !
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    // SyncTerminatingRuntimePod is expected to terminate running containers in a pod that we have no
    // configuration for. Once this method returns without error, any remaining local state can be safely
    // cleaned up by background processes in each subsystem. Unlike syncTerminatingPod, we lack
    // knowledge of the full pod spec and so cannot perform lifecycle related operations, only ensure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top