Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for elsif (1.91 sec)

  1. fastapi/_compat.py

                    new_errors = ValidationError(  # type: ignore[call-arg]
                        errors=[error], model=RequestErrorModel
                    ).errors()
                    use_errors.extend(new_errors)
                elif isinstance(error, list):
                    use_errors.extend(_normalize_errors(error))
                else:
                    use_errors.append(error)
            return use_errors
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb.py

    #
    #  Register all the *Printer classes above.
    #
    
    def makematcher(klass):
    	def matcher(val):
    		try:
    			if klass.pattern.match(str(val.type)):
    				return klass(val)
    			elif paramtypematch(val.type, klass.pattern):
    				return klass(val.cast(val.type.target()))
    		except Exception:
    			pass
    	return matcher
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. .teamcity/mvnw

                wget "$jarUrl" -O "$wrapperJarPath"
            else
                wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
            fi
        elif command -v curl > /dev/null; then
            if [ "$MVNW_VERBOSE" = true ]; then
              echo "Found curl ... using curl"
            fi
            if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

        kube::util::read-array KUBE_CLIENT_PLATFORMS < <(kube::golang::dups \
            "${platforms[@]}" \
            "${KUBE_SUPPORTED_CLIENT_PLATFORMS[@]}" \
          )
        readonly KUBE_CLIENT_PLATFORMS
    
      elif [[ "${KUBE_FASTBUILD:-}" == "true" ]]; then
        host_arch=$(kube::util::host_arch)
        if [[ "${host_arch}" != "amd64" && "${host_arch}" != "arm64" && "${host_arch}" != "ppc64le" && "${host_arch}" != "s390x" ]]; 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)
  5. common/config/.golangci.yml

          - commentedOutCode
          - commentedOutImport
          - defaultCaseOrder
          - deprecatedComment
          - docStub
          - dupArg
          - dupBranchBody
          - dupCase
          - dupSubExpr
          - elseif
          - emptyFallthrough
          - equalFold
          - flagDeref
          - flagName
          - hexLiteral
          - indexAlloc
          - initClause
          - methodExprCall
          - nilValReturn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    units|unrar|unshar|uptime|useradd|userdel|usermod|users|uuencode|uudecode|v|vdir|vi|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yes|zip)(?=$|[\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&])(?:let|:|\.|if|then|else|elif|fi|for|break|continue|while|in|case|function|select|do|done|until|echo|exit|return|set|declare)(?=$|[\s;|&])/,lookbehind:!0},boolean:{pattern:/(^|[\s;|&])(?:true|false)(?=$|[\s;|&])/,lookbehind:!0},operator:/&&?|\|\|?|==?|!=?|<<<?|>>|<=?|>=?|=~/,p...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -#ifdef __USE_GNU
    -# if !defined _HAVE_STRING_ARCH_mempcpy || defined _FORCE_INLINES
    -#  ifndef _HAVE_STRING_ARCH_mempcpy
    -#   if __GNUC_PREREQ (3, 4)
    -#    define __mempcpy(dest, src, n) __builtin_mempcpy (dest, src, n)
    -#   elif __GNUC_PREREQ (3, 0)
    -#    define __mempcpy(dest, src, n) \
    -  (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n)      \
    -		  && __string2_1bptr_p (src) && n <= 8			      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  8. ci/official/utilities/extract_resultstore_links.py

        # end of the invocation.
        # If there's a failure message, it will be found in-between these two.
    
        if not current_url:
          url_lines['start'] = i
        elif current_url == url:
          url_lines['end'] = i
        else:
          result_store_links[current_url]['next_url'] = i
          url_lines['start'] = i
        current_url = url
    
      previous_end_line = None
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/kube-addons.sh

      if echo "${kubectl_output}" | grep --silent "AlreadyExists"; then
        log INFO "== Skipping start ${config_name} in namespace ${namespace}, already exists at $(date -Is)"
        return 0;
      elif echo "${kubectl_output}" | grep --silent "no objects"; then
        # Nothing to do.
        return 0;
      fi
      echo "${kubectl_output}" # for visibility of errors
      return 1;
    }
    
    function reconcile_addons() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. cluster/gce/windows/testonly/install-ssh.psm1

    # metadata server.
    function InstallAndStart-OpenSsh {
      if (-not (ShouldWrite-File $OPENSSH_ROOT)) {
        Log-Output "Starting already-installed OpenSSH services"
        Start_OpenSshServices
        return
      }
      elseif (Test-Path $OPENSSH_ROOT) {
        Log-Output ("OpenSSH directory already exists, attempting to run its " +
                    "uninstaller before reinstalling")
        powershell.exe `
            -ExecutionPolicy Bypass `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
Back to top