Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 771 for dev2 (0.05 sec)

  1. mvnw

    if [ -n "$wrapperSha256Sum" ]; then
      wrapperSha256Result=false
      if command -v sha256sum > /dev/null; then
        if echo "$wrapperSha256Sum  $wrapperJarPath" | sha256sum -c > /dev/null 2>&1; then
          wrapperSha256Result=true
        fi
      elif command -v shasum > /dev/null; then
        if echo "$wrapperSha256Sum  $wrapperJarPath" | shasum -a 256 -c > /dev/null 2>&1; then
          wrapperSha256Result=true
        fi
      else
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/os/user/user.go

    	// On Windows, this is a security identifier (SID) in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Uid string
    	// Gid is the primary group ID.
    	// On POSIX systems, this is a decimal number representing the gid.
    	// On Windows, this is a SID in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/cleanup.sh

    if kubectl get crd gateways.gateway.networking.k8s.io >/dev/null 2>&1; then
      protos=( httproutes gateways.gateway.networking.k8s.io )
      for proto in "${protos[@]}"; do
        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
      kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo-versions.yaml" >/dev/null 2>&1
    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. Makefile

    	@echo "Running tests for IAM (external IDP, etcd backends)"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue,dev -v -run TestIAM* ./cmd
    	@echo "Running tests for IAM (external IDP, etcd backends) with -race"
    	@MINIO_API_REQUESTS_MAX=10000 GORACE=history_size=7 CGO_ENABLED=1 go test -race -tags kqueue,dev -v -run TestIAM* ./cmd
    
    test-iam-ldap-upgrade-import: install-race ## verify IAM (external LDAP IDP)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. prow/release-commit.sh

    if [[ -z "${DRY_RUN:-}" ]]; then
      release-builder publish --release "${WORK_DIR}/out" \
        --gcsbucket "${GCS_BUCKET}" --gcsaliases "${TAG},${NEXT_VERSION}-dev,latest" \
        --dockerhub "${DOCKER_HUB}" --dockertags "${TAG},${VERSION},${NEXT_VERSION}-dev,latest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. Dockerfile.hotfix

    FROM registry.access.redhat.com/ubi9/ubi-micro:latest
    
    ARG RELEASE
    
    LABEL name="MinIO" \
          vendor="MinIO Inc <dev@min.io>" \
          maintainer="MinIO Inc <dev@min.io>" \
          version="${RELEASE}" \
          release="${RELEASE}" \
          summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. hack/update-generated-api-compatibility-data.sh

    # We suppress the test failure that occurs when there are changes.
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD >/dev/null 2>&1 || true
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/apiextensions-apiserver/pkg/apis -run //HEAD >/dev/null 2>&1 || true
    
    # Now that we have regenerated data at HEAD, run the test without suppressing output or failures
    go test k8s.io/api -run //HEAD -count=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. hack/update-generated-docs.sh

      mkdir -p "${dest}/docs/yaml/kubectl/"
      genyaml "${dest}/docs/yaml/kubectl/"
    
      # create the list of generated files
      pushd "${dest}" > /dev/null || return 1
      touch docs/.generated_docs
      find . -type f | cut -sd / -f 2- | LC_ALL=C sort > docs/.generated_docs
      popd > /dev/null || return 1
    }
    
    # Removes previously generated docs-- we don't want to check them in. $KUBE_ROOT
    # must be set.
    remove_generated_docs() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. maven-model/src/test/java/org/apache/maven/model/MailingListTest.java

        }
    
        public void testToStringNotNonsense() {
            MailingList list = new MailingList();
            list.setName("modello-dev");
    
            String s = list.toString();
    
            assertEquals("MailingList {name=modello-dev, archive=null}", s);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    CODEGEN_PKG=${CODEGEN_PKG:-$(cd "${SCRIPT_ROOT}"; ls -d -1 ./vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)}
    
    source "${CODEGEN_PKG}/kube_codegen.sh"
    
    THIS_PKG="k8s.io/apiextensions-apiserver"
    
    kube::codegen::gen_helpers \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top