Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 352 for cite (0.17 sec)

  1. 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)
  2. maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml

          <url>ssh://parent.url/snaps</url>
          <uniqueVersion>false</uniqueVersion>
          <layout>legacy</layout>
        </snapshotRepository>
        <site>
          <id>parent-site</id>
          <name>parent-site</name>
          <url>scp://parent.url/site</url>
        </site>
      </distributionManagement>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/unc-path/pom.xml

      <description>Test inheritance of UNC paths</description>
    
      <modules>
        <module>child</module>
      </modules>
    
      <distributionManagement>
        <site>
          <id>site</id>
          <url>file:////host/site</url>
        </site>
      </distributionManagement>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  4. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/BUILD

            "//tensorflow/lite/toco:model_flags_proto_cc",
            "//tensorflow/lite/toco:toco_convert",
            "//tensorflow/lite/toco:toco_flags_proto_cc",
            "//tensorflow/lite/toco:toco_graphviz_dump_options",
            "//tensorflow/lite/toco:toco_port",
            "//tensorflow/lite/toco:toco_tooling",
            "//tensorflow/lite/toco:tooling_util",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  6. src/main/resources/fess_label.properties

    labels.user_carLicense=Car License
    labels.carLicense=Car License
    labels.user_mobile=Mobile
    labels.mobile=Mobile
    labels.user_postalAddress=Postal Address
    labels.postalAddress=Postal Address
    labels.user_city=City
    labels.city=City
    labels.user_teletexTerminalIdentifier=Teletex Terminal Identifier
    labels.teletexTerminalIdentifier=Teletex Terminal Identifier
    labels.user_x121Address=X121 Address
    labels.x121Address=X121 Address
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_en.properties

    labels.user_carLicense=Car License
    labels.carLicense=Car License
    labels.user_mobile=Mobile
    labels.mobile=Mobile
    labels.user_postalAddress=Postal Address
    labels.postalAddress=Postal Address
    labels.user_city=City
    labels.city=City
    labels.user_teletexTerminalIdentifier=Teletex Terminal Identifier
    labels.teletexTerminalIdentifier=Teletex Terminal Identifier
    labels.user_x121Address=X121 Address
    labels.x121Address=X121 Address
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  8. scripts/docs.py

            # removed or not.
        else:
            dist_path = site_path / lang
            shutil.rmtree(dist_path, ignore_errors=True)
        current_dir = os.getcwd()
        os.chdir(lang_path)
        shutil.rmtree(build_site_dist_path, ignore_errors=True)
        subprocess.run(["mkdocs", "build", "--site-dir", build_site_dist_path], check=True)
        shutil.copytree(build_site_dist_path, dist_path, dirs_exist_ok=True)
        os.chdir(current_dir)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 22 19:26:14 GMT 2024
    - 10.9K bytes
    - Viewed (1)
  9. .github/ISSUE_TEMPLATE/tflite-op-request.md

    ---
    name: TensorFlow Lite Op Request
    about: Use this template for reporting Lite ops you are using or missing
    labels: 'comp:lite'
    
    ---
    
    **System information**
    - OS Platform and Distribution (e.g., Linux Ubuntu 16.04):
    - TensorFlow installed from (source or binary):
    - TensorFlow version (or github SHA if from source):
    
    
    **Provide the text output from tflite_convert**
    
    ```
    # Copy and paste here
    ```
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jun 15 03:35:58 GMT 2022
    - 879 bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

            List<String> stubCleanCycle = Arrays.asList(PRE_CLEAN.getPhase(), CLEAN.getPhase(), POST_CLEAN.getPhase());
    
            List<String> stubSiteCycle =
                    Arrays.asList(PRE_SITE.getPhase(), SITE.getPhase(), POST_SITE.getPhase(), SITE_DEPLOY.getPhase());
    
            List<String> stubWrapperCycle = Arrays.asList(WRAPPER.getPhase());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top