Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for elsif (0.28 sec)

  1. 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)
  2. src/mdo/transformer.vm

          #elseif ( $field.type == "java.util.List" && $field.to == "String" && $field.multiplicity == "*" )
            List<String> oldVal = target.get${capField}();
            List<String> newVal = transform(oldVal, this::transform);
            return newVal != oldVal ? (builder != null ? builder : creator.get()).${field.name}(newVal) : builder;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K 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. 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)
  5. 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)
  6. 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)
  7. hack/update-vendor-licenses.sh

        echo
    
        file=""
        if [[ -n "${CONTENT[${PACKAGE}-LICENSE]-}" ]]; then
          file="${CONTENT[${PACKAGE}-LICENSE]-}"
        elif [[ -n "${CONTENT[${PACKAGE}-COPYRIGHT]-}" ]]; then
          file="${CONTENT[${PACKAGE}-COPYRIGHT]-}"
        elif [[ -n "${CONTENT[${PACKAGE}-COPYING]-}" ]]; then
          file="${CONTENT[${PACKAGE}-COPYING]-}"
        fi
        if [[ -z "${file}" ]]; then
          cat >&2 << __EOF__
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

            signature_keys=list(signature_def_map.keys()),
            signature_def_map_serialized=signature_def_map_serialized,
            py_function_library=py_function_lib.PyFunctionLibrary(),
        )
      elif _has_quantization_method(config.specs, 'weight_only_ptq'):
        pywrap_quantization.weight_only_ptq(
            src_saved_model_path,
            dst_saved_model_path,
            quantization_config_serialized=config.SerializeToString(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (1)
  9. buildscripts/checkdeps.sh

    ## }
    ##
    check_minimum_version() {
    	IFS='.' read -r -a varray1 <<<"$1"
    	IFS='.' read -r -a varray2 <<<"$2"
    
    	for i in "${!varray1[@]}"; do
    		if [[ ${varray1[i]} -lt ${varray2[i]} ]]; then
    			return 0
    		elif [[ ${varray1[i]} -gt ${varray2[i]} ]]; then
    			return 1
    		fi
    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/cgo/libcgo.h

     *   CGO_CFLAGS="-fsanitize=thread" CGO_LDFLAGS="-fsanitize=thread" go install
     */
    #undef CGO_TSAN
    #if defined(__has_feature)
    # if __has_feature(thread_sanitizer)
    #  define CGO_TSAN
    # endif
    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    // These must match the definitions in yesTsanProlog in cmd/cgo/out.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top