Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for site (0.14 sec)

  1. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "a.b.c.1.2.3.ca.us",
              "site.jp",
              "uomi-online.kir.jp",
              "jprs.co.jp",
              "site.quick.jp",
              "site.tenki.jp",
              "site.or.jp",
              "site.gr.jp",
              "site.ne.jp",
              "site.ac.jp",
              "site.ad.jp",
              "site.ed.jp",
              "site.geo.jp",
              "site.go.jp",
              "site.lg.jp",
              "1.fm",
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "a.b.c.1.2.3.ca.us",
              "site.jp",
              "uomi-online.kir.jp",
              "jprs.co.jp",
              "site.quick.jp",
              "site.tenki.jp",
              "site.or.jp",
              "site.gr.jp",
              "site.ne.jp",
              "site.ac.jp",
              "site.ad.jp",
              "site.ed.jp",
              "site.geo.jp",
              "site.go.jp",
              "site.lg.jp",
              "1.fm",
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                                        "site")),
                        phase("post-site"),
                        phase(
                                "site-deploy",
                                plugin(
                                        "org.apache.maven.plugins:maven-site-plugin:" + MAVEN_SITE_PLUGIN_VERSION
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/providers/SiteLifecycleProvider.java

        private static final String[] BINDINGS = {
            "site", "org.apache.maven.plugins:maven-site-plugin:" + MAVEN_SITE_PLUGIN_VERSION + ":site",
            "site-deploy", "org.apache.maven.plugins:maven-site-plugin:" + MAVEN_SITE_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: site
    
        @Inject
        public SiteLifecycleProvider() {
            super(LIFECYCLE_ID, PHASES, BINDINGS);
        }
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // from the plugin.xml inside a plugin.
        //
        // TODO This whole method could probably removed by injecting lifeCyclePluginAnalyzer straight into client site.
        // TODO But for some reason the whole plexus appcontext refuses to start when I try this.
    
        public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

            }
    
            DistributionManagement dist = model.getDistributionManagement();
            if (dist != null) {
                Site site = dist.getSite();
                if (site != null) {
                    builder.distributionManagement(dist.withSite(site.withUrl(normalize(site.getUrl()))));
                }
            }
    
            return builder.build();
        }
    
        private String normalize(String url) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

        // site
    
        public static final MojoDescriptor PRE_SITE = createMojoDescriptor("pre-site");
    
        public static final MojoDescriptor SITE = createMojoDescriptor("site");
    
        public static final MojoDescriptor POST_SITE = createMojoDescriptor("post-site");
    
        public static final MojoDescriptor SITE_DEPLOY = createMojoDescriptor("site-deploy");
    
        // wrapper
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("default", pom.getValue("distributionManagement/snapshotRepository/layout"));
            assertEquals("child-site", pom.getValue("distributionManagement/site/id"));
            assertEquals("scp://child.url/site", pom.getValue("distributionManagement/site/url"));
            assertNull(pom.getValue("distributionManagement/site/name"));
        }
    
        @Test
        void testXmlTextCoalescing() throws Exception {
    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)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

            assertThat(lifecycle.getPhases(), hasSize(3));
        }
    
        @Test
        void testSiteLifecycle() {
            final Lifecycle lifecycle = getLifeCycleById("site");
            assertThat(lifecycle.getId(), is("site"));
            assertThat(lifecycle.getPhases(), hasSize(4));
        }
    
        @Test
        void testWrapperLifecycle() {
            final Lifecycle lifecycle = getLifeCycleById("wrapper");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/LifecyclePhase.java

        VERIFY("verify"),
        INSTALL("install"),
        DEPLOY("deploy"),
    
        PRE_CLEAN("pre-clean"),
        CLEAN("clean"),
        POST_CLEAN("post-clean"),
    
        PRE_SITE("pre-site"),
        SITE("site"),
        POST_SITE("post-site"),
        SITE_DEPLOY("site-deploy"),
    
        NONE("");
    
        private final String id;
    
        LifecyclePhase(String id) {
            this.id = id;
        }
    
        public String id() {
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.2K bytes
    - Viewed (0)
Back to top