Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sizeof (0.19 sec)

  1. misc/wasm/go_js_wasm_exec

    	SOURCE="$(readlink "$SOURCE")"
    	[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
    done
    DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    
    # Increase the V8 stack size from the default of 984K
    # to 8192K to ensure all tests can pass without hitting
    # stack size limits.
    Shell Script
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Feb 02 15:35:28 GMT 2023
    - 603 bytes
    - Viewed (0)
  2. manifests/addons/gen.sh

        --version "${GRAFANA_VERSION}" \
        --repo https://grafana.github.io/helm-charts \
        -f "${WD}/values-grafana.yaml"
    
      # Set up grafana dashboards. Split into 2 and compress to single line json to avoid Kubernetes size limits
      compressDashboard "pilot-dashboard.json"
      compressDashboard "istio-performance-dashboard.json"
      compressDashboard "istio-workload-dashboard.json"
      compressDashboard "istio-service-dashboard.json"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/main/assemblies/files/fess.in.sh

    fi
    
    if [ "x$FESS_MIN_MEM" = "x" ]; then
        FESS_MIN_MEM=256m
    fi
    if [ "x$FESS_MAX_MEM" = "x" ]; then
        FESS_MAX_MEM=2g
    fi
    if [ "x$FESS_HEAP_SIZE" != "x" ]; then
        FESS_MIN_MEM=$FESS_HEAP_SIZE
        FESS_MAX_MEM=$FESS_HEAP_SIZE
    fi
    
    # External opensearch cluster
    #SEARCH_ENGINE_HTTP_URL=http://localhost:9200
    #FESS_DICTIONARY_PATH=/var/lib/opensearch/config/
    
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication.sh

    	exit_1
    fi
    if [ "${rep_obj1_size}" != "${src_obj1_size}" ]; then
    	echo "BUG: Size: '${rep_obj1_size}' of replicated object: 'minio2/test-bucket/encrypted' doesn't match with source value: '${src_obj1_size}'"
    	exit_1
    fi
    if [ "${rep_obj2_etag}" != "${src_obj2_etag}" ]; then
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/main/assemblies/files/generate-thumbnail

        echo "pdftoppm does not work."
        exit 1
      fi
      convert -thumbnail ${image_size} ${tmp_png_file} "${output_file}"
      rm -f ${tmp_png_prefix}*png
    elif [[ x"${cmd_type}" = "ximage" ]] ; then
      check_command convert
      target_file=$(echo "$url" | sed -e "s#^file:/*#/#g")
      convert -thumbnail ${image_size} "${target_file}" "${output_file}"
    elif [[ x"${cmd_type}" = "x" ]] ; then
      echo "No filetype."
      exit 1
    else
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 12 13:13:28 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  6. buildscripts/race.sh

    #!/usr/bin/env bash
    
    set -e
    
    export GORACE="history_size=7"
    export MINIO_API_REQUESTS_MAX=10000
    
    for d in $(go list ./...); do
    	CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 184 bytes
    - Viewed (0)
  7. common/scripts/check_clean_repo.sh

        git diff > "${PATCH_OUT}"
    
        [ -n "${JOB_NAME}" ] && [ -n "${BUILD_ID}" ]
        IN_PROW="$?"
    
        # Don't persist large diffs (30M+) on CI
        LARGE_FILE="$(find "${ARTIFACTS}" -name "${PATCH_NAME}" -type 'f' -size +30M)"
        if [ "${IN_PROW}" -eq 0 ] && [ -n "${LARGE_FILE}" ]; then
          rm "${PATCH_OUT}"
          echo "WARNING: patch file was too large to persist ($(du -h "${PATCH_OUT}"))"
          return 0
        fi
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 11 22:57:12 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  8. ci/official/utilities/rename_and_verify_wheels.sh

      ls -t *.whl | tail -n +2 | xargs rm
    fi
    
    # Check if size is too big. TFCI_WHL_SIZE_LIMIT is in find's format, which can be
    # 'k' for kilobytes, 'M' for megabytes, or 'G' for gigabytes, and the + to indicate
    # "anything greater than" is added by the script.
    if [[ "$TFCI_WHL_SIZE_LIMIT_ENABLE" == "1" ]] && [[ -n "$(find . -iname "*.whl" -size "+$TFCI_WHL_SIZE_LIMIT")" ]]; then
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 21:16:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/site-replication/run-sse-kms-object-replication.sh

    	exit_1
    fi
    
    # Check the etag, size and md5 of replicated SSEC object
    if [ "${rep_obj4_etag}" != "${src_obj4_etag}" ]; then
    	echo "BUG: Etag: '${rep_obj4_etag}' of replicated object: 'minio2/test-bucket/mpartobj' doesn't match with source value: '${src_obj4_etag}'"
    	exit_1
    fi
    if [ "${rep_obj4_size}" != "${src_obj4_size}" ]; then
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 19 08:43:09 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top