Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Wijden (0.19 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     
     /* Same as WEAK_ALIAS, but mark symbol as hidden.  */
     # define weak_hidden_alias(name, aliasname) \
       _weak_hidden_alias (name, aliasname)
     # define _weak_hidden_alias(name, aliasname) \
       extern __typeof (name) aliasname \
    -    __attribute__ ((weak, alias (#name), __visibility__ ("hidden")));
    +    __attribute__ ((weak, alias (#name), __visibility__ ("hidden"))) \
    +    __attribute_copy__ (name);
     
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/api_template.__init__.py

      else:
        importlib.import_module("keras.src.optimizers")
    except (ImportError, AttributeError):
      pass
    
    del importlib
    
    # Delete modules that should be hidden from dir().
    # Don't fail if these modules are not available.
    # For e.g. this file will be originally placed under tensorflow/_api/v1 which
    # does not have "python", "core" directories. Then, it will be copied
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
  3. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -    *++s1 = '\0';
    -  while (--n > 0);
    -
    -  return s;
    +  size_t size = __strnlen (s2, n);
    +  if (size != n)
    +    memset (s1 + size, '\0', n - size);
    +  return memcpy (s1, s2, size);
     }
     libc_hidden_builtin_def (strncpy)
    diff --git a/sysdeps/gnu/bits/utmp.h b/sysdeps/gnu/bits/utmp.h
    index aed2750..434a533 100644
    --- a/sysdeps/gnu/bits/utmp.h
    +++ b/sysdeps/gnu/bits/utmp.h
    @@ -59,10 +59,14 @@ struct utmp
     {
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  4. tensorflow/api_template_v1.__init__.py

    if _os.getenv("TF_PLUGGABLE_DEVICE_LIBRARY_PATH", ""):
      _ll.load_pluggable_device_library(
          _os.getenv("TF_PLUGGABLE_DEVICE_LIBRARY_PATH")
      )
    
    # Delete modules that should be hidden from dir().
    # Don't fail if these modules are not available.
    # For e.g. this file will be originally placed under tensorflow/_api/v1 which
    # does not have "python", "core" directories. Then, it will be copied
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. RELEASE.md

            `core/platform/ctstring.h` for string access/modification in C.
        *   `tensorflow.python`, `tensorflow.core` and `tensorflow.compiler` modules
            are now hidden. These modules are not part of TensorFlow public API.
        *   `tf.raw_ops.Max` and `tf.raw_ops.Min` no longer accept inputs of type
            `tf.complex64` or `tf.complex128`, because the behavior of these ops is
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top