Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for 220 (0.23 sec)

  1. ci/official/requirements_updater/numpy1_requirements/requirements_lock_3_11.txt

        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250419 \
        --hash=sha256:41ba72431b88a87ed07e284cb244c29cd5dc42b1dd5970436f4e1bec9684e0f0
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 66.1K bytes
    - Viewed (1)
  2. requirements_lock_3_10.txt

        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250424 \
        --hash=sha256:62ad3a4ce94cba2bb59538dd481999ede10927304d6f7fa0e9a23df9d24a779e
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 67.7K bytes
    - Viewed (0)
  3. requirements_lock_3_9.txt

        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250424 \
        --hash=sha256:62ad3a4ce94cba2bb59538dd481999ede10927304d6f7fa0e9a23df9d24a779e
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 66.6K bytes
    - Viewed (0)
  4. go.sum

    github.com/go-openapi/jsonreference v0.21.0/go.mod h1:LmZmgsrTkVg9LG4EaHeY8cBDslNPMo06cago5JNLkm4=
    github.com/go-openapi/loads v0.22.0 h1:ECPGd4jX1U6NApCGG1We+uEozOAvXvJSF4nnwHZ8Aco=
    github.com/go-openapi/loads v0.22.0/go.mod h1:yLsaTCS92mnSAZX5WWoxszLj0u+Ojl+Zs5Stn1oF+rs=
    github.com/go-openapi/runtime v0.28.0 h1:gpPPmWSNGo214l6n8hzdXYhPuJcGtziTOgUpvsFWGIQ=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        ignoredMembers.add(checkNotNull(method));
        return this;
      }
    
      /**
       * Ignore {@code constructor} in the tests that follow. Returns this object.
       *
       * @since 22.0
       */
      @CanIgnoreReturnValue
      public NullPointerTester ignore(Constructor<?> constructor) {
        ignoredMembers.add(checkNotNull(constructor));
        return this;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. requirements_lock_3_13.txt

        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250424 \
        --hash=sha256:62ad3a4ce94cba2bb59538dd481999ede10927304d6f7fa0e9a23df9d24a779e
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 66.2K bytes
    - Viewed (0)
  7. requirements_lock_3_11.txt

        --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
        # via
        #   astunparse
        #   google-pasta
        #   tb-nightly
    tb-nightly==2.20.0a20250419 \
        --hash=sha256:41ba72431b88a87ed07e284cb244c29cd5dc42b1dd5970436f4e1bec9684e0f0
        # via -r ci/official/requirements_updater/requirements.in
    tblib==2.0.0 \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Sep 03 23:57:17 UTC 2025
    - 67.7K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle.go

    	OutputLocation   OutputLocation     `xml:"OutputLocation,omitempty"`
    }
    
    // Maximum 2MiB size per restore object request.
    const maxRestoreObjectRequestSize = 2 << 20
    
    // parseRestoreRequest parses RestoreObjectRequest from xml
    func parseRestoreRequest(reader io.Reader) (*RestoreObjectRequest, error) {
    	req := RestoreObjectRequest{}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Streams.java

       * This method behaves equivalently to {@linkplain #zip zipping} the stream elements into
       * temporary pair objects and then using {@link Stream#forEach} on that stream.
       *
       * @since 33.4.0 (but since 22.0 in the JRE flavor)
       */
      @Beta
      public static <A extends @Nullable Object, B extends @Nullable Object> void forEachPair(
          Stream<A> streamA, Stream<B> streamB, BiConsumer<? super A, ? super B> consumer) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/BloomFilter.java

       * Bloom filter. This approximation is reasonably accurate if it does not exceed the value of
       * {@code expectedInsertions} that was used when constructing the filter.
       *
       * @since 22.0
       */
      public long approximateElementCount() {
        long bitSize = bits.bitSize();
        long bitCount = bits.bitCount();
    
        /*
         * Each insertion is expected to reduce the # of clear bits by a factor of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top