Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pomPath (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

        @Override
        public DefaultModelBuildingRequest setPomPath(Path pomPath) {
            this.pomPath = (pomPath != null) ? pomPath.toAbsolutePath() : null;
            return this;
        }
    
        @Override
        public synchronized ModelSource getModelSource() {
            if (modelSource == null && pomPath != null) {
                modelSource = new FileModelSource(pomPath);
            }
            return modelSource;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

                it.descendant "Download ${server.uri}${projectB.pomPath}"
                it.descendant "Download ${server.uri}/repo/group/projectC/maven-metadata.xml"
                it.descendant "Download ${server.uri}${projectC.pomPath}"
                it.descendant "Download ${server.uri}${projectD.metaDataPath}"
                it.descendant "Download ${server.uri}${projectD.pomPath}"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            def downloadBMetadata = events.operation("Download ${server.uri}${projectB.pomPath}")
            def downloadBArtifact = events.operation("Download ${server.uri}${projectB.artifactPath}")
            def downloadCRootMetadata = events.operation("Download ${server.uri}/repo/group/projectC/maven-metadata.xml")
            def downloadCPom = events.operation("Download ${server.uri}${projectC.pomPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * {@link FileModelSource} instead.
         *
         * @param pomPath The POM file of the project to build the effective model for, may be {@code null} to build the
         *            model of some POM from the repository.
         * @return This request, never {@code null}.
         * @since 4.0.0
         */
        ModelBuildingRequest setPomPath(Path pomPath);
    
        /**
         * Gets the level of validation to perform on processed models.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                this.artifact = ArtifactUtils.copyArtifact(artifact);
                if ("pom".equals(artifact.getType()) && file != null) {
                    pomHash = file.getPath().hashCode() + file.lastModified();
                } else {
                    pomHash = 0;
                }
                this.resolveManagedVersions = resolveManagedVersions;
                this.repositories.add(localRepository);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows_test.go

    	comPath := filepath.Join(t.TempDir(), "example.com")
    	batPath := comPath + ".bat"
    	installBat(t, batPath)
    
    	cmd := exec.Command(comPath)
    	out, err := cmd.CombinedOutput()
    	t.Logf("%v: %v\n%s", cmd, err, out)
    	if !errors.Is(err, fs.ErrNotExist) {
    		t.Errorf("Command(%#q).Run: %v\nwant fs.ErrNotExist", comPath, err)
    	}
    
    	resolved, err := exec.LookPath(comPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. pkg/volume/local/local_test.go

    		t.Errorf("Got unexpected path: %s, expected %s", globalPath, expectedGlobalPath)
    	}
    	expectedPodPath := filepath.Join(tmpDir, testPodPath)
    	podPath, volName := mapper.GetPodDeviceMapPath()
    	if podPath != expectedPodPath {
    		t.Errorf("Got unexpected pod path: %s, expected %s", podPath, expectedPodPath)
    	}
    	if volName != testPVName {
    		t.Errorf("Got unexpected volNamne: %s, expected %s", volName, testPVName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	clientConfig := restclient.AnonymousClientConfig(bootstrapClientConfig)
    	pemPath := store.CurrentPath()
    	clientConfig.KeyFile = pemPath
    	clientConfig.CertFile = pemPath
    	if err := writeKubeconfigFromBootstrapping(clientConfig, kubeconfigPath, pemPath); err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/cluster_test.go

    		t.Run(rt.name, func(t2 *testing.T) {
    			if len(rt.pemContent) > 0 {
    				pemPath := filepath.Join(tmpdir, "kubelet.pem")
    				err := os.WriteFile(pemPath, rt.pemContent, 0644)
    				if err != nil {
    					t.Errorf("Couldn't create pem file: %v", err)
    					return
    				}
    				rt.kubeconfigContent = []byte(strings.Replace(string(rt.kubeconfigContent), "kubelet.pem", pemPath, -1))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig.go

    			return "", fmt.Errorf("failed to retrieve Pod %s/%s: %v", podNamespace, podName, err)
    		}
    
    		promPath, promPort, err := util.PrometheusPathAndPort(pod)
    		if err != nil {
    			return "", fmt.Errorf("failed to retrieve prometheus path and port from Pod %s/%s: %v", podNamespace, podName, err)
    		}
    		path = promPath
    		port = promPort
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top