Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for excluding (0.13 sec)

  1. src/cmd/go/internal/work/exec.go

    	}
    	if cfg.BuildASan {
    		cgoCFLAGS = append([]string{"-fsanitize=address"}, cgoCFLAGS...)
    		cgoLDFLAGS = append([]string{"-fsanitize=address"}, cgoLDFLAGS...)
    	}
    
    	// Allows including _cgo_export.h, as well as the user's .h files,
    	// from .[ch] files in the package.
    	cgoCPPFLAGS = append(cgoCPPFLAGS, "-I", objdir)
    
    	// cgo
    	// TODO: CGO_FLAGS?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		}
    	}
    
    	// Compute and update the status in cache once the pods are no longer running.
    	// The computation is done here to ensure the pod status used for it contains
    	// information about the container end states (including exit codes) - when
    	// SyncTerminatedPod is called the containers may already be removed.
    	apiPodStatus = kl.generateAPIPodStatus(pod, podStatus, true)
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    #
    # Assumed vars:
    #   MASTER_NAME
    #   NODE_INSTANCE_PREFIX
    #   WINDOWS_NODE_INSTANCE_PREFIX
    #   ZONE
    # This function tears down cluster resources 10 at a time to avoid issuing too many
    # API calls and exceeding API quota. It is important to bring down the instances before bringing
    # down the firewall rules and routes.
    function kube-down() {
      local -r batch=200
    
      detect-project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top