Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for outputPath (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            this.inputHierarchy = inputHierarchy;
        }
    
        public void detectMissingDependencies(LocalTaskNode node, TypeValidationContext validationContext) {
            for (String outputPath : node.getMutationInfo().outputPaths) {
                inputHierarchy.getNodesAccessing(outputPath).stream()
                    .filter(consumerNode -> hasNoSpecifiedOrder(node, consumerNode))
                    .filter(MissingTaskDependencyDetector::isEnabled)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    func podOutputPath(workDir string, cluster cluster.Cluster, pod corev1.Pod, dumpName string) string {
    	return outputPath(workDir, cluster, pod.Name, dumpName)
    }
    
    // outputPath gives a path in the form of workDir/cluster/<prefix>_<suffix>
    func outputPath(workDir string, cluster cluster.Cluster, prefix, suffix string) string {
    	dir := path.Join(workDir, cluster.StableName())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	for _, component := range constants.ControlPlaneComponents {
    		realPath := constants.GetStaticPodFilepath(component, dryRunManifestDir)
    		outputPath := constants.GetStaticPodFilepath(component, constants.GetStaticPodDirectory())
    		files = append(files, dryrunutil.NewFileToPrint(realPath, outputPath))
    	}
    
    	return dryrunutil.PrintDryRunFiles(files, os.Stdout)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pkg/log/options.go

    }
    
    // Options defines the set of options supported by Istio's component logging package.
    type Options struct {
    	// OutputPaths is a list of file system paths to write the log data to.
    	// The special values stdout and stderr can be used to output to the
    	// standard I/O streams. This defaults to stdout.
    	OutputPaths []string
    
    	// ErrorOutputPaths is a list of file system paths to write logger errors to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. hack/lib/golang.sh

    kube::golang::outfile_for_binary() {
      local binary=$1
      local platform=$2
      local output_path="${KUBE_GOPATH}/bin"
      local bin
      bin=$(basename "${binary}")
      if [[ "${platform}" != "${host_platform}" ]]; then
        output_path="${output_path}/${platform//\//_}"
      fi
      if [[ ${GOOS} == "windows" ]]; then
        bin="${bin}.exe"
      fi
      echo "${output_path}/${bin}"
    }
    
    # Argument: the name of a Kubernetes package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    		}
    	}
    	// End previous result parsing
    
    	return &conf, nil
    }
    
    func GetLoggingOptions(cfg *Config) *log.Options {
    	loggingOptions := log.DefaultOptions()
    	loggingOptions.OutputPaths = []string{"stderr"}
    	loggingOptions.JSONEncoding = true
    	if cfg != nil {
    		// Tee all logs to UDS. Stdout will go to kubelet (hard to access, UDS will be read by the CNI DaemonSet and exposed
    		// by normal `kubectl logs`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top