Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for elemEnds (0.14 sec)

  1. src/crypto/x509/x509.go

    	// slice is non-empty, unless verification is delegated to an OS
    	// library which understands all the critical extensions.
    	//
    	// Users can access these extensions using Extensions and can remove
    	// elements from this slice if they believe that they have been
    	// handled.
    	UnhandledCriticalExtensions []asn1.ObjectIdentifier
    
    	ExtKeyUsage        []ExtKeyUsage           // Sequence of extended key usages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	return (*abi.Type)(add(section, uintptr(off), "sizeof(rtype) > 0"))
    }
    
    // typesByString returns the subslice of typelinks() whose elements have
    // the given string representation.
    // It may be empty (no known types with that string) or may have
    // multiple elements (multiple types with that string).
    //
    // typesByString should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * For example, the cache may evict an entry because it hasn't been used recently or very often.
       *
       * <p>If {@code maximumSize} is zero, elements will be evicted immediately after being loaded into
       * cache. This can be useful in testing, or to disable caching temporarily.
       *
       * <p>This feature cannot be used in conjunction with {@link #maximumWeight}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// `paths` would set `status` to `TF_OK`.
      ///
      /// Caller guarantees that:
      ///   * `paths` has exactly `num_files` entries.
      ///   * `statuses` is either null or an array of `num_files` non-null elements
      ///     of type `TF_Status*`.
      ///
      /// If `statuses` is not null, plugins must fill each element with detailed
      /// status for each file, as if calling `path_exists` on each one. Core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    #include "tensorflow/core/util/tensor_format.h"
    
    namespace mlir {
    namespace TF {
    namespace {
    
    // Returns 1D 64-bit dense elements attribute with the given values.
    static DenseIntElementsAttr GetI64ElementsAttr(ArrayRef<int64_t> values,
                                                   Builder *builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	// for other elements. See issue 14642.
    	{"%06v", []any{+10.0, 10}, "[000010 000010]"},
    	{"%06v", []any{-10.0, 10}, "[-00010 000010]"},
    	{"%06v", []any{+10.0 + 10i, 10}, "[(000010+00010i) 000010]"},
    	{"%06v", []any{-10.0 + 10i, 10}, "[(-00010+00010i) 000010]"},
    
    	// integer formatting should not alter padding for other elements.
    	{"%03.6v", []any{1, 2.0, "x"}, "[000001 002 00x]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       <artifact name="javaparser-core-3.6.11.jar">
          <pgp value="8756c4f765c9ac3cb6b85d62379ce192d401ab61"/>
       </artifact>
    </component>
    ----
    
    [WARNING]
    ====
    For the `pgp` and `trusted-key` elements, Gradle _requires_ full fingerprint IDs (e.g. `b801e2f8ef035068ec1139cc29579f18fa8fd93b` instead of a long ID `29579f18fa8fd93b`).
    This minimizes the chance of a https://en.wikipedia.org/wiki/Collision_attack[collision attack].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	ErrVersionNotSupported = errors.New("runtime api version is not supported")
    )
    
    // podStateProvider can determine if none of the elements are necessary to retain (pod content)
    // or if none of the runtime elements are necessary to retain (containers)
    type podStateProvider interface {
    	IsPodTerminationRequested(kubetypes.UID) bool
    	ShouldPodContentBeRemoved(kubetypes.UID) bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[strict-kotlin-dsl-precompiled-scripts-accessors]]
    === Strict Kotlin DSL precompiled script plugins accessors generation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top