Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 276 for sita (0.19 sec)

  1. docs/site-replication/README.md

    export MC_HOST_minio3=https://adminuser:******@****.***
    ```
    
    - Add site replication configuration with:
    
    ```sh
    mc admin replicate add minio1 minio2 minio3
    ```
    
    - Once the above command returns success, you may query site replication configuration with:
    
    ```sh
    mc admin replicate info minio1
    ```
    
    ** Note **
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 21:30:28 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/url-append/parent/pom.xml

        <connection>https://scm.project.url/parent</connection>
        <developerConnection>https://scm.project.url/parent</developerConnection>
      </scm>
      <distributionManagement>
        <site>
          <url>https://site.project.url/parent</url>
          <id>parent.site</id>
        </site>
      </distributionManagement>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. docs/bucket/versioning/versioning-tests.sh

    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    ./mc version enable sitea/delissue --insecure
    
    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    count=$(./mc ls --versions sitea/delissue --insecure | wc -l)
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 09:50:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. .github/workflows/deploy-docs.yml

          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Clean site
            run: |
              rm -rf ./site
              mkdir ./site
          - name: Download Artifact Docs
            id: download
            uses: dawidd6/action-download-artifact@v3.1.4
            with:
              if_no_artifact_found: ignore
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 19 01:33:28 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/api_template.__init__.py

    _site_packages_dirs += [p for p in _sys.path if "site-packages" in p]
    if "getsitepackages" in dir(_site):
      _site_packages_dirs += _site.getsitepackages()
    
    if "sysconfig" in dir(_distutils):
      _site_packages_dirs += [_distutils.sysconfig.get_python_lib()]
    
    _site_packages_dirs = list(set(_site_packages_dirs))
    
    # Find the location of this exact file.
    _current_file_location = _inspect.getfile(_inspect.currentframe())
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
  9. scripts/clean.sh

    #!/bin/sh -e
    
    if [ -d 'dist' ] ; then
        rm -r dist
    fi
    if [ -d 'site' ] ; then
        rm -r site
    Shell Script
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Dec 10 03:59:18 GMT 2018
    - 98 bytes
    - Viewed (0)
  10. 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)
Back to top