Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for child2 (0.06 sec)

  1. src/main/java/jcifs/SmbResource.java

         *         <code>false</code> otherwise
         * @throws CIFSException
         */
        boolean exists () throws CIFSException;
    
    
        /**
         * Fetch a child resource
         * 
         * @param name
         * @return the child resource
         * @throws CIFSException
         */
        SmbResource resolve ( String name ) throws CIFSException;
    
    
        /**
         * Get the file index
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenInvokerTest.java

    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.io.CleanupMode;
    import org.junit.jupiter.api.io.TempDir;
    
    /**
     * Forked UT: it cannot use jimFS as it runs in child process.
     */
    public class DefaultForkedMavenInvokerTest extends MavenInvokerTestSupport<MavenOptions, ForkedMavenInvokerRequest> {
    
        @Override
        protected Invoker<ForkedMavenInvokerRequest> createInvoker() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java

     * <li>useful reference to a solution, or set of solutions: this is usually a wiki page url in
     * <a href="http://cwiki.apache.org/confluence/display/MAVEN/">http://cwiki.apache.org/confluence/display/MAVEN/</a>,
     * </li>
     * <li>child exception summaries.</li>
     * </ul>
     */
    public class ExceptionSummary {
    
        private Throwable exception;
    
        private String message;
    
        private String reference;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/test/resources/poms/inheritance/empty-urls-parent.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>inheritance</groupId>
      <artifactId>empty</artifactId>
      <version>1</version>
      <modules>
        <module>child</module>
      </modules>
      <url></url>
      <scm>
        <connection> </connection>
        <developerConnection>  </developerConnection>
        <url></url>
      </scm>
      <distributionManagement>
        <site>
          <url></url>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tests/tests_test.go

    	}
    
    	return
    }
    
    func RunMigrations() {
    	var err error
    	allModels := []interface{}{&User{}, &Account{}, &Pet{}, &Company{}, &Toy{}, &Language{}, &Coupon{}, &CouponProduct{}, &Order{}, &Parent{}, &Child{}, &Tools{}}
    	rand.Seed(time.Now().UnixNano())
    	rand.Shuffle(len(allModels), func(i, j int) { allModels[i], allModels[j] = allModels[j], allModels[i] })
    
    	DB.Migrator().DropTable("user_friends", "user_speaks")
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Sep 30 03:21:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * Note that the aggregator project is required to have a {@code pom} packaging.</p>
     *
     * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects.
     * The <dfn>child project</dfn> will inherit all the information from the <dfn>parent project</dfn>
     * POM.</p>
     *
     */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-parent.xml

      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model inheritance test parent: module path != artifactId</name>
    
      <modules>
        <module>child</module>
      </modules>
    
      <!-- 5 URLs in the pom will be inherited with path added -->
      <url>http://www.apache.org/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

            File pom0 = new File(localRepo, "p0/pom.xml");
            File pom0Basedir = pom0.getParentFile();
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load the child project, which inherits from p0...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        @Test
        public void findRootProjectWithAttribute() {
            Path test = Paths.get("src/test/projects/root-attribute");
            assertEquals(test, new DefaultRootLocator().findRoot(test.resolve("child")));
        }
    
        @Test
        public void testPropertiesInterpolation() throws Exception {
            FileSystem fs = Jimfs.newFileSystem(Configuration.windows());
    
            Path mavenHome = fs.getPath("C:\\maven");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

                public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags";
                public static final String SCRIPT_TYPE = "script.type";
                public static final String HTML_CHILD_URL_RULES = "html.child.url.rules";
            }
    
            // meta.*
            // meta.<field>=<value>
    
            // value.*
            // value.<field>=<value>
    
            // script.*
            // script.<field>=<value>
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top