Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for setPath (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                            .projectBuild(false)
                            .processPlugins(false)
                            .twoPhaseBuilding(false)
                            .source(ModelSource.fromPath(pomArtifact.getPath(), gav))
                            // This merge is on purpose because otherwise user properties would override model
                            // properties in dependencies the user does not know. See MNG-7563 for details.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            File pom = getProject("it0063");
    
            Properties eps = new Properties();
            eps.setProperty("jre.home", new File(pom.getParentFile(), "jdk/jre").getPath());
    
            MavenSession session = createMavenSession(pom, eps);
            MavenProject project = session.getCurrentProject();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                        public ProbeTask() {}
    
                        @$TaskAction.name
                        void probe() {
                            getProbeService().get().probe("onTaskAction", getPath());
                        }
                    }
    
                    public abstract class ProbePlugin implements Plugin<Project> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getParent()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getPath()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getProject()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun task(name: String, configureAction: Action<in Task>): Task {
                onAccess("task")
                return delegate.task(name, configureAction)
            }
    
            override fun getPath(): String {
                return delegate.path
            }
    
            override fun getBuildTreePath(): String {
                return delegate.buildTreePath
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	sbld.SetType(sym.SRODATA)
    
    	// Don't reset the variable's size. String variable usually has size of
    	// 2*PtrSize, but in ASAN build it can be larger due to red zone.
    	// (See issue 56175.)
    	bld.SetData(make([]byte, arch.PtrSize*2))
    	bld.SetReadOnly(false)
    	bld.ResetRelocs()
    	bld.SetAddrPlus(arch, 0, sbld.Sym(), 0)
    	bld.SetUint(arch, int64(arch.PtrSize), uint64(len(value)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/math/big/float.go

    	// x != 0
    	z.mant = z.mant.set(x.abs)
    	fnorm(z.mant)
    	z.setExpAndRound(int64(bits), 0)
    	return z
    }
    
    // SetRat sets z to the (possibly rounded) value of x and returns z.
    // If z's precision is 0, it is changed to the largest of a.BitLen(),
    // b.BitLen(), or 64; with x = a/b.
    func (z *Float) SetRat(x *Rat) *Float {
    	if x.IsInt() {
    		return z.SetInt(x.Num())
    	}
    	var a, b Float
    	a.SetInt(x.Num())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		if vol.Mounter.GetAttributes().Managed && vol.Mounter.GetAttributes().SELinuxRelabel && !vol.SELinuxLabeled {
    			vol.SELinuxLabeled = true
    			relabelVolume = true
    		}
    		hostPath, err := volumeutil.GetPath(vol.Mounter)
    		if err != nil {
    			return nil, cleanupAction, err
    		}
    
    		subPath := mount.SubPath
    		if mount.SubPathExpr != "" {
    			subPath, err = kubecontainer.ExpandContainerVolumeMounts(mount, expandEnvs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top