Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for elsif (0.28 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4Test.groovy

                testCase("testCodeWasCompiledWithSwift4Compiler",
                    """#if swift(>=5.0)
                            XCTFail("Compilation unit compiled with Swift 5+ instead of Swift 4.x");
                        #elseif swift(>=4.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 3- instead of Swift 4.x");
                        #endif
                    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. scripts/mkdocs_hooks.py

                resolve_file(item=item, files=files, config=config)
            elif isinstance(item, dict):
                assert len(item) == 1
                values = list(item.values())
                if not values:
                    continue
                if isinstance(values[0], str):
                    resolve_file(item=values[0], files=files, config=config)
                elif isinstance(values[0], list):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. 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
        echo 'LOG_DUMP_SSH_USER not set, but required when using log_dump_custom_get_instances'
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. docs/en/layouts/custom.yml

          }[primary] or "#ffffff" }}
        {%- endif -%}
    
      # Font family (default: Roboto)
      - &font_family >-
        {%- if layout.font_family -%}
          {{ layout.font_family }}
        {%- elif config.theme.font != false -%}
          {{ config.theme.font.get("text", "Roboto") }}
        {%- else -%}
          Roboto
        {%- endif -%}
    
      # Site name
      - &site_name >-
        {{ config.site_name }}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. cluster/get-kube.sh

        # ie. 1.18.0 or 1.19.0-beta.0
        # shellcheck disable=SC2269 # this line is a noop but it helps with reading
        KUBERNETES_RELEASE_URL="${KUBERNETES_RELEASE_URL}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
        # Override KUBERNETES_RELEASE_URL to point to the CI bucket;
        # this will be used by get-kube-binaries.sh.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. .github/actions/notify-translations/app/main.py

            elif pr.state == "closed" or approved_label in label_strs:
                logging.info(f"Already approved or closed PR #{pr.number}")
                if already_done_comment:
                    logging.info(
                        f"This PR #{pr.number} was already marked as done in comment: {already_done_comment.url}"
                    )
                elif already_notified_comment:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

            output_directory,
            quantization_options,
            representative_dataset,
        )
      elif method.preset_method == _PresetMethod.METHOD_DYNAMIC_RANGE_INT8:
        return _dynamic_range_quantize(
            saved_model_path,
            output_directory,
            quantization_options,
        )
      elif (
          method.preset_method == _PresetMethod.METHOD_STATIC_RANGE_WEIGHT_ONLY_INT8
      ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_stack_unix.c

    	// (and the fallback doesn't work...). Illumos does not.
    	pthread_getattr_np(pthread_self(), &attr);  // GNU extension
    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #elif defined(__illumos__)
    	pthread_attr_get_np(pthread_self(), &attr);
    	pthread_attr_getstack(&attr, &addr, &size); // low address
    #else
    	// We don't know how to get the current stacks, so assume they are the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 03:44:11 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/testdata/testwinlib/main.c

        {
            exceptionCount++;
            // prepare context to resume execution
            CONTEXT *c = ExceptionInfo->ContextRecord;
    #ifdef _AMD64_
            c->Rip = *(DWORD64 *)c->Rsp;
            c->Rsp += 8;
    #elif defined(_X86_)
            c->Eip = *(DWORD *)c->Esp;
            c->Esp += 4;
    #else
            c->Pc = c->Lr;
    #endif
    #ifdef _ARM64_
            // TODO: remove when windows/arm64 supports SEH stack unwinding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. hack/lib/protoc.sh

          elif [[ ${os} == "linux" && ${arch} == "amd64" ]]; then
            url="https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip"
          elif [[ ${os} == "linux" && ${arch} == "arm64" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top