Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,030 for then (0.04 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. 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)
  3. 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)
  4. 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)
  5. src/make.bash

    # build directive, in the build. Set it to 0 to ignore them.
    #
    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    # default value depends on the system.
    #
    # GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used
    # by the internal linker.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. common/scripts/setup_env.sh

    if [[ ${TARGET_ARCH} ]]; then
        # Target explicitly set
        :
    elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
        TARGET_ARCH=amd64
    elif [[ ${LOCAL_ARCH} == armv8* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == arm64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == aarch64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == armv* ]]; then
        TARGET_ARCH=arm
    elif [[ ${LOCAL_ARCH} == s390x ]]; then
        TARGET_ARCH=s390x
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. hack/ginkgo-e2e.sh

      ginkgo_args+=("--silence-skips")
    fi
    
    if [[ "${GINKGO_FORCE_NEWLINES}" == "y" ]]; then
      ginkgo_args+=("--force-newlines")
    fi
    
    if [[ "${GINKGO_NO_COLOR}" == "y" ]]; then
      ginkgo_args+=("--no-color")
    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

            then:
            def e = thrown(IllegalArgumentException)
            e.message.contains("cache version (2) must be greater than all previous versions")
        }
    
        def "throws exception if Gradle version is not greater than previous one"() {
            when:
            CacheVersionMapping.introducedIn("1.0")
                .changedTo(2, "1.2")
                .changedTo(3, "1.1")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        }
    
        def "creates with gradle.properties when using #scriptDsl build scripts with --incubating"() {
            when:
            run ('init', '--type', 'java-application', '--dsl', scriptDsl.id, '--incubating', '--java-version', JavaVersion.current().majorVersion)
    
            then:
            gradlePropertiesGenerated()
    
            when:
            succeeds('test')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. ci/official/utilities/setup_macos.sh

    fi
    set -x
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    # inside the TensorFlow root directory. We then define them as a filegroup
    # target inside "tensorflow/tools/toolchains/cross_compile/cc" so that Bazel
    # can register it as an input to compile/link actions and send it to the remote
    # VMs when needed.
    # TODO(b/316932689): Avoid copying and replace with a local repository rule.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top