Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for then (0.05 sec)

  1. hack/verify-golangci-lint.sh

      # GOBIN. If not, then we have to make a temporary copy of the config and
      # replace the path with an absolute one. This could be done also
      # unconditionally, but the invocation that is printed below is nicer if we
      # don't to do it when not required.
      if grep -q 'path: ../_output/local/bin/' "${golangci_config}" &&
         [ "${GOBIN}" != "${KUBE_ROOT}/_output/local/bin" ]; then
        kube::util::ensure-temp-dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            busy()
        }
    
        def "a new daemon is started if all existing are busy"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
            startBuild()
    
            then:
            busy 2
        }
    
        def "sending stop to idle daemons causes them to terminate immediately"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. hack/make-rules/test.sh

    #!/usr/bin/env bash
    
    # Copyright 2014 The Kubernetes Authors.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. hack/verify-api-groups.sh

    	if grep -q 'GroupName = "' "${register_file}"; then
    		group_name=$(grep 'GroupName = "' "${register_file}" | cut -d\" -f2 -)
    	else
    		echo "${register_file} is missing \"const GroupName =\""
    		exit 1
    	fi
    
    	# If the dirname doesn't have a slash, then it's the internal package.
    	# if does have one, then it's versioned (e.g. foobar/v1).
    	if [[ "${group_dirname#*'/'}" == "${group_dirname}" ]]; then
    		group_dirnames+=("${group_dirname}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. cluster/log-dump/log-dump.sh

        local gke_zone="${ZONE:-}"
        source "${KUBE_ROOT}/cluster/gce/util.sh"
        ZONE="${gke_zone}"
      elif [[ -z "${LOG_DUMP_SSH_KEY:-}" ]]; then
        echo 'LOG_DUMP_SSH_KEY not set, but required when using log_dump_custom_get_instances'
        exit 1
      elif [[ -z "${LOG_DUMP_SSH_USER:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. src/main/assemblies/files/fess

            if [ -r "$include" ]; then
                . "$include"
                break
            fi
        done
    # ...otherwise, source the specified include.
    elif [ -r "$FESS_INCLUDE" ]; then
        . "$FESS_INCLUDE"
    fi
    
    if [ -x "$JAVA_HOME/bin/java" ]; then
        JAVA="$JAVA_HOME/bin/java"
    else
        JAVA=`which java`
    fi
    
    if [ ! -x "$JAVA" ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. hack/lib/golang.sh

          # Aliases that build the ginkgo CLI for hack/ginkgo-e2e.sh.
          # "ginkgo" is the one that is documented in the Makefile. The others
          # are for backwards compatibility.
          echo "github.com/onsi/ginkgo/v2/ginkgo"
          continue
        fi
    
        if [[ "${target}" =~ ^([[:alnum:]]+".")+[[:alnum:]]+"/" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. hack/make-rules/verify.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # If KUBE_JUNIT_REPORT_DIR is unset, and ARTIFACTS is set, then have them match.
    if [[ -z "${KUBE_JUNIT_REPORT_DIR:-}" && -n "${ARTIFACTS:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/cache/DefaultCacheConfigurationsTest.groovy

            then:
            thrown(IllegalArgumentException)
    
            when:
            cacheConfigurations.downloadedResources.setRemoveUnusedEntriesAfterDays(0)
    
            then:
            thrown(IllegalArgumentException)
    
            when:
            cacheConfigurations.releasedWrappers.setRemoveUnusedEntriesAfterDays(0)
    
            then:
            thrown(IllegalArgumentException)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

            then:
            1 * action2.execute("value")
    
            then:
            1 * action3.execute("value")
    
            then:
            1 * action4.execute("value")
    
            then:
            1 * action5.execute("value")
            0 * _
    
            when:
            set = set.add(action6)
            set.execute("value")
    
            then:
            !set.empty
            1 * action1.execute("value")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top