Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for elsif (0.87 sec)

  1. src/syscall/mksyscall.pl

    		if($type =~ /^\*/) {
    			push @args, "uintptr(unsafe.Pointer($name))";
    		} elsif($type eq "string" && $errvar ne "") {
    			$text .= "\tvar _p$n *byte\n";
    			$text .= "\t_p$n, $errvar = BytePtrFromString($name)\n";
    			$text .= "\tif $errvar != nil {\n\t\treturn\n\t}\n";
    			push @args, "uintptr(unsafe.Pointer(_p$n))";
    			$n++;
    		} elsif($type eq "string") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*      *##set ( $spdx = 'MIT' )
    #*    *##elseif ( $license.name == "Eclipse Public License, Version 1.0" )
    #*      *##set ( $spdx = 'EPL-1.0' )
    #*    *##elseif ( $license.name == "Eclipse Public License, Version 2.0" )
    #*      *##set ( $spdx = 'EPL-2.0' )
    #*    *##elseif ( $license.url.contains( "www.apache.org/licenses/LICENSE-2.0" ) )
    #*      *##set ( $spdx = 'Apache-2.0' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. common/scripts/setup_env.sh

        # 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)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

              ones = array_ops.ones_like(out)
              out = array_ops.concat([out, ones], 0)
            elif self.same_scale_op == 'gather':
              out = array_ops.gather(out, indices=[0], axis=0)
            elif self.same_scale_op == 'max_pool':
              out = nn_ops.max_pool(out, ksize=3, strides=1, padding='SAME')
            elif self.same_scale_op == 'pad':
              paddings = array_ops.ones(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.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
        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)
  6. 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)
  7. 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)
  8. hack/make-rules/test-e2e-node.sh

    else
      # Refresh sudo credentials if needed
      if ping -c 1 -q metadata.google.internal &> /dev/null; then
        echo 'Running on GCE, not asking for sudo credentials'
      elif ping -c 1 -q 169.254.169.254 &> /dev/null; then
        echo 'Running on AWS, not asking for sudo credentials'
      elif sudo --non-interactive "$(which bash)" -c true 2> /dev/null; then
        # if we can run bash without a password, it's a pretty safe bet that either
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. configure.py

        user_input_origin = get_input(question)
        user_input = user_input_origin.strip().lower()
        if user_input == 'y':
          print(yes_reply)
          var = True
        elif user_input == 'n':
          print(no_reply)
          var = False
        elif not user_input:
          if enabled_by_default:
            print(yes_reply)
            var = True
          else:
            print(no_reply)
            var = False
        else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. hack/lib/etcd.sh

        exit 1
      }
    
      # validate etcd port is free
      local port_check_command
      if command -v ss &> /dev/null && ss -Version | grep 'iproute2' &> /dev/null; then
        port_check_command="ss"
      elif command -v netstat &>/dev/null; then
        port_check_command="netstat"
      else
        kube::log::usage "unable to identify if etcd is bound to port ${ETCD_PORT}. unable to find ss or netstat utilities."
        exit 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top