Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for outputPath (0.42 sec)

  1. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            when:
            Sign signTask = signing.sign(jar).first()
    
            then:
            def outputPath = jar.outputs.files.singleFile.toPath().toAbsolutePath().toString()
            signTask.signaturesByKey.containsKey(outputPath)
            signTask.signaturesByKey.get(outputPath) == signTask.singleSignature
        }
    
        def "files to sign that do not exist are ignored"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/runtime/fds_test.go

    	if err := i.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	o, err := os.CreateTemp(t.TempDir(), "fds-output")
    	if err != nil {
    		t.Fatal(err)
    	}
    	outputPath := o.Name()
    	if err := o.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	env := []string{"TEST_OUTPUT=" + outputPath}
    	for _, e := range os.Environ() {
    		if strings.HasPrefix(e, "GODEBUG=") || strings.HasPrefix(e, "GOTRACEBACK=") {
    			continue
    		}
    		env = append(env, e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/dryrun/dryrun.go

    		for _, component := range kubeadmconstants.ControlPlaneComponents {
    			realPath := kubeadmconstants.GetStaticPodFilepath(component, manifestDir)
    			outputPath := kubeadmconstants.GetStaticPodFilepath(component, kubeadmconstants.GetStaticPodDirectory())
    			files = append(files, NewFileToPrint(realPath, outputPath))
    		}
    	} else {
    		fmt.Printf("[dryrun] Wrote certificates and kubeconfig files to the %q directory\n", manifestDir)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

                        }
    
                        private void recordOutputSnapshot(FileSystemLocationSnapshot snapshot) {
                            String outputPath = snapshot.getAbsolutePath();
                            File outputFile = new File(outputPath);
                            outputFiles.put(outputPath, OutputKind.OUTPUT);
                            File outputFileParent = outputFile.getParentFile();
                            while (outputFileParent != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

            }
    
            return sequenceOf(directory)
        }
    
        private
        fun aJar(sourceFiles: Sequence<Path>): Sequence<Path> {
            val outputPath = projectDir.resolve("mylib.jar")
            Files.newOutputStream(outputPath).use { outputStream ->
                JarOutputStream(outputStream).use { jarStream ->
                    sourceFiles.forEach { dir ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    final String tempPath = tempFile.getAbsolutePath();
                    final String outputPath = outputFile.getAbsolutePath();
                    final List<String> cmdList = new ArrayList<>();
                    for (final String value : commandList) {
                        cmdList.add(expandPath(value.replace("${url}", tempPath).replace("${outputFile}", outputPath)));
                    }
    
                    executeCommand(thumbnailId, cmdList);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

        }
    
        private void doTransform(File input, TransformOutputs outputs, Function<String, String> instrumentedEntryNameMapper) {
            String outputPath = getOutputPath(input, instrumentedEntryNameMapper);
            File output = input.isDirectory() ? outputs.dir(outputPath) : outputs.file(outputPath);
            InterceptorTypeRegistryAndFilter typeRegistryAndFilter = provideInterceptorTypeRegistryAndFilter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top