Search Options

Results per page
Sort
Preferred Languages
Advance

Results 581 - 590 of 615 for sata (0.03 sec)

  1. Doubles.java

    unexpected behavior if it contains {@code NaN}, or if {@code NaN} L571: * is used as a parameter to any of its methods. L572: * L573: * <p>The returned list is serializable. L574: * L575: * <p><b>Note:</b> when possible, you should represent your data as an {@link L576: * ImmutableDoubleArray} instead, which has an {@link ImmutableDoubleArray#asList asList} view. L577: * L578: * @param backingArray the array to back the list L579: * @return a list view of the array L580: */ L581: public...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 17 15:52:18 UTC 2024
      27.9K bytes
  2. Doubles.java

    unexpected behavior if it contains {@code NaN}, or if {@code NaN} L571: * is used as a parameter to any of its methods. L572: * L573: * <p>The returned list is serializable. L574: * L575: * <p><b>Note:</b> when possible, you should represent your data as an {@link L576: * ImmutableDoubleArray} instead, which has an {@link ImmutableDoubleArray#asList asList} view. L577: * L578: * @param backingArray the array to back the list L579: * @return a list view of the array L580: */ L581: public...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 25 18:05:56 UTC 2024
      28.1K bytes
  3. TreeMultiset.java

    @GwtIncompatible // java.io.ObjectInputStream L1088: private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { L1089: stream.defaultReadObject(); L1090: @SuppressWarnings("unchecked") L1091: // reading data stored by writeObject L1092: Comparator<? super E> comparator = (Comparator<? super E>) requireNonNull(stream.readObject()); L1093: Serialization.getFieldSetter(AbstractSortedMultiset.class, "comparator").set(this, comparator); L1094: Ser...
    github.com/google/guava/guava/src/com/google/co...
    Fri Oct 18 20:24:49 UTC 2024
      34.5K bytes
  4. CHANGELOG-1.22.md

    ed-to-new-crd-apis) L286: - [Workloads that saturate nodes with pods may see pods that fail due to node admission](#workloads-that-saturate-nodes-with-pods-may-see-pods-that-fail-due-to-node-admission) L287: - [Etcd v3.5.[0-2] data corruption](#etcd-v350-2-data-corruption) L288: - [Urgent Upgrade Notes](#urgent-upgrade-notes) L289: - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade) L290: - [Changes by Kind](#changes-by-kind-16) L291:...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Tue Dec 13 12:43:45 UTC 2022
      454.1K bytes
  5. Longs.java

    it. For example, whether {@code list.get(0) == list.get(0)} is true for L706: * the returned list is unspecified. L707: * L708: * <p>The returned list is serializable. L709: * L710: * <p><b>Note:</b> when possible, you should represent your data as an {@link ImmutableLongArray} L711: * instead, which has an {@link ImmutableLongArray#asList asList} view. L712: * L713: * @param backingArray the array to back the list L714: * @return a list view of the array L715: */ L716: public static...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 25 18:05:56 UTC 2024
      29.3K bytes
  6. Longs.java

    it. For example, whether {@code list.get(0) == list.get(0)} is true for L706: * the returned list is unspecified. L707: * L708: * <p>The returned list is serializable. L709: * L710: * <p><b>Note:</b> when possible, you should represent your data as an {@link ImmutableLongArray} L711: * instead, which has an {@link ImmutableLongArray#asList asList} view. L712: * L713: * @param backingArray the array to back the list L714: * @return a list view of the array L715: */ L716: public static...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 17 15:52:18 UTC 2024
      29K bytes
  7. jquery-3.7.1.min.map

    eEventListener","readyWait","wait","readyState","doScroll","access","chainable","emptyGet","raw","bulk","_key","rmsPrefix","rdashAlpha","fcamelCase","_all","letter","toUpperCase","camelCase","string","acceptData","owner","Data","uid","defineProperty","configurable","set","data","prop","hasData","dataPriv","dataUser","rbrace","rmultiDash","dataAttr","JSON","parse","removeData","_data","_removeData","attrs","dequeue","startLength","hooks","_queueHooks","unshift","stop","setter","clearQueue","tmp",...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      131.6K bytes
  8. CHANGELOG-1.2.md

    ser-guide/labels/#set-based-requirement) supported by Deployments and ReplicaSets. L371: * “kubectl run” now produces Deployments (instead of ReplicationControllers) and L372:Jobs (instead of Pods) by default. L373: * Pods can now consume Secret data in environment variables and inject those L374:environment variables into a container’s command-line args. L375: * Stable version of Heapster which scales up to 1000 nodes: more metrics, reduced L376:latency, reduced cpu/memory consumption (~4mb per...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Fri Dec 04 06:36:19 UTC 2020
      41.4K bytes
  9. CHANGELOG-1.30.md

    in-tree Azure Disk and vSphere PersistentVolumes. ([#124794](https://github.com/kubernetes/kubernetes/pull/124794), [@jsafrane](https://github.com/jsafrane)) [SIG Cloud Provider and Storage] L888:- Fixes a 1.29.0 regression that introduced a possible data race that could cause panics in kube-controller-manager and kube-scheduler ([#124517](https://github.com/kubernetes/kubernetes/pull/124517), [@wojtek-t](https://github.com/wojtek-t)) [SIG API Machinery and Scheduling] L889:- Kubeadm: during the preflight...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Oct 23 04:40:14 UTC 2024
      309.1K bytes
  10. Futures.java

    L114: // For a (long) discussion about this specific issue and the general futility of life. L115: // L116: // For the time being we are OK with the problem discussed above since it requires a caller to L117: // introduce a very specific kind of data-race. And given the other operations performed by these L118: // methods that involve volatile read/write operations, in practice there is no issue. Also, the L119: // way in such a visibility issue would surface is most likely as a failure of cancel()...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 25 13:13:32 UTC 2024
      64.7K bytes
Back to top