Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Kasturi (0.2 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            return session;
        }
    
        private MavenSession newMavenSession() throws Exception {
            return createMavenSession(null);
        }
    
        @Test
        public void testUri() throws Exception {
            Path path = Paths.get("").toAbsolutePath();
    
            MavenSession mavenSession = createMavenSession(null);
            mavenSession.getRequest().setTopDirectory(path);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            ExpressionEvaluator ee = createExpressionEvaluator(createDefaultProject(), null, new Properties());
            assertInstanceOf(Path.class, ee.evaluate("${session.rootDirectory}"));
        }
    
        @Test
        public void testUri() throws Exception {
            Path path = Paths.get("").toAbsolutePath();
    
            MavenSession mavenSession = createMavenSession(null);
            mavenSession.getRequest().setTopDirectory(path);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

        private static String fileConfigId;
        private static String labelId;
        private static String crawlLabelId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // create and execute a file crawler
            labelId = createLabel();
            crawlLabelId = createCrawlLabel();
    
            createFileConfig();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("baseuri-interpolation/pom.xml");
            assertNotEquals(
                    pom.getBasedir().toURI().toString(),
                    pom.getValue("properties/prop1").toString());
        }
    
        /* MNG-6386 */
        @Test
        void testInterpolationOfRfc3986BaseUri() throws Exception {
            PomTestWrapper pom = buildPom("baseuri-interpolation/pom.xml");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top