Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for some (0.19 sec)

  1. ci/official/debug_tfci.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Nov 01 19:54:25 GMT 2023
    - 1022 bytes
    - Viewed (0)
  2. ci/official/bisect.sh

    # limitations under the License.
    # ==============================================================================
    # Run any CI script and env configuration to bisect a failing target in some
    # build configuration. You must set the following variables to control this
    # script:
    #
    #   TF_BISECT_GOOD: Last known good commit (e.g. commit from the last passing job)
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. common/scripts/setup_env.sh

    if [[ -f "${HOME}/.gitconfig" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.gitconfig,destination=/home/.gitconfig,readonly "
    fi
    
    # .netrc conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.netrc" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.netrc,destination=/home/.netrc,readonly "
    fi
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/packaging/deb/init.d/fess

    # Look for the right JVM to use
    for jdir in $JDK_DIRS; do
        if [ -r "$jdir/bin/java" -a -z "${JAVA_HOME}" ]; then
            JAVA_HOME="$jdir"
        fi
    done
    export JAVA_HOME
    
    # Directory where the Fess binary distribution resides
    FESS_HOME=${packaging.fess.home.dir}
    
    # Heap size defaults to 256m min, 1g max
    # Set FESS_HEAP_SIZE to 50% of available RAM, but no more than 31g
    #FESS_HEAP_SIZE=2g
    
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  5. update-credits.sh

          or other liability obligations and/or rights consistent with this
          License. However, in accepting such obligations, You may act only
          on Your own behalf and on Your sole responsibility, not on behalf
          of any other Contributor, and only if You agree to indemnify,
          defend, and hold each Contributor harmless for any liability
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Aug 11 05:08:38 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  6. dbflute_fess/_project.sh

    #!/bin/bash
    
    export ANT_OPTS=-Xmx512m
    
    export DBFLUTE_HOME=../mydbflute/dbflute-1.x
    
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 03:32:24 GMT 2016
    - 128 bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/bin/mvnyjp

    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven YourKit Profiler Startup Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME       Must point at your Java Development Kit installation.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    Shell Script
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat May 23 09:02:45 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvnDebug

    # under the License.
    
    # -----------------------------------------------------------------------------
    # Apache Maven Debug Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_OPTS          (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC       (Optional) Flag to disable loading of mavenrc files.
    Shell Script
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Jul 25 20:33:33 GMT 2021
    - 1.6K bytes
    - Viewed (0)
  9. buildscripts/verify-healing.sh

    			echo "server$i log:"
    			cat "${WORK_DIR}/dist-minio-server$i.log"
    		done
    		pkill -9 minio
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    }
    
    function main() {
    	# use same ports for all tests
    	start_port=$(shuf -i 10000-65000 -n 1)
    
    	perform_test "2" ${start_port}
    	perform_test "1" ${start_port}
    	perform_test "3" ${start_port}
    }
    
    (__init__ "$@" && main "$@")
    rv=$?
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 28 07:02:14 GMT 2024
    - 3.2K bytes
    - Viewed (1)
  10. common/scripts/kind_provisioner.sh

    # before anything else.
    #
    # Note: Cluster configuration topology file specifies basic configuration of each
    # KinD cluster like its name, pod and service subnets and network_id. If two cluster
    # have the same network_id then they belong to the same network and their pods can
    # talk to each other directly.
    #
    # [{ "cluster_name": "cluster1","pod_subnet": "10.10.0.0/16","svc_subnet": "10.255.10.0/24","network_id": "0" },
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
Back to top