Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for getLoc (0.12 sec)

  1. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

        private File getMultiModuleProjectPomFile(MavenExecutionRequest request) {
            File multiModuleProjectDirectory = request.getMultiModuleProjectDirectory();
            if (request.getPom().getParentFile().equals(multiModuleProjectDirectory)) {
                return request.getPom();
            } else {
                File multiModuleProjectPom = modelLocator.locateExistingPom(multiModuleProjectDirectory);
                if (multiModuleProjectPom == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/building/ComplexActivationTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    
    /**
     */
    class ComplexActivationTest {
    
        private File getPom(String name) {
            return new File("src/test/resources/poms/factory/" + name + ".xml").getAbsoluteFile();
        }
    
        @Test
        void testAndConditionInActivation() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/FileCollectionConventionMappingIntegrationTest.groovy

            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Internal abstract ConfigurableFileCollection getFoo()
                    @Internal abstract ConfigurableFileCollection getBar()
                    @Inject abstract ProjectLayout getLayout()
    
                    @TaskAction
                    void useIt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 20:10:55 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

            writer = new DefaultModelWriter();
            assembler = new DefaultInheritanceAssembler();
        }
    
        private File getPom(String name) {
            return new File("src/test/resources/poms/inheritance/" + name + ".xml");
        }
    
        private Model getModel(String name) throws IOException {
            return reader.read(getPom(name), null).getDelegate();
        }
    
        @Test
        void testPluginConfiguration() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

                RequirementMatcher matcher = provides.get(key);
    
                if (matcher == null) {
                    getLog().debug("Toolchain {} is missing required property: {}", this, key);
                    return false;
                }
                if (!matcher.matches(requirement.getValue())) {
                    getLog().debug("Toolchain {} doesn't match required property: {}", this, key);
                    return false;
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/path/match.go

    				if len(chunk) > 0 && chunk[0] == ']' && nrange > 0 {
    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    				if chunk[0] == '-' {
    					if hi, chunk, err = getEsc(chunk[1:]); err != nil {
    						return "", false, err
    					}
    				}
    				if lo <= r && r <= hi {
    					match = true
    				}
    				nrange++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomPointerFactory.java

        }
    
        public NodePointer createNodePointer(QName name, Object object, Locale locale) {
            if (object instanceof org.codehaus.plexus.util.xml.Xpp3Dom) {
                object = ((org.codehaus.plexus.util.xml.Xpp3Dom) object).getDom();
            }
            if (object instanceof XmlNode) {
                return new Xpp3DomNodePointer((XmlNode) object);
            }
            return null;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/waiting_pods_map.go

    			msg := fmt.Sprintf("rejected due to timeout after waiting %v at plugin %v",
    				waitTime, plugin)
    			wp.Reject(plugin, msg)
    		})
    	}
    
    	return wp
    }
    
    // GetPod returns a reference to the waiting pod.
    func (w *waitingPod) GetPod() *v1.Pod {
    	return w.pod
    }
    
    // GetPendingPlugins returns a list of pending permit plugin's name.
    func (w *waitingPod) GetPendingPlugins() []string {
    	w.mu.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/path/filepath/match.go

    				if len(chunk) > 0 && chunk[0] == ']' && nrange > 0 {
    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    				if chunk[0] == '-' {
    					if hi, chunk, err = getEsc(chunk[1:]); err != nil {
    						return "", false, err
    					}
    				}
    				if lo <= r && r <= hi {
    					match = true
    				}
    				nrange++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/TestManagedTypes.java

     * limitations under the License.
     */
    
    package org.gradle.workers.fixtures;
    
    import org.gradle.api.Named;
    
    public class TestManagedTypes {
        public interface ManagedThing {
            String getFoo();
            void setFoo(String foo);
        }
    
        public interface ImmutableManagedThing extends Named {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 885 bytes
    - Viewed (0)
Back to top