Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 158 for 140 (0.28 seconds)

  1. build-tools-internal/formatterConfig.xml

            <setting id="org.eclipse.jdt.core.formatter.comment.align_tags_descriptions_grouped" value="true"/>
            <setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="140"/>
            <setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="true"/>
            <setting id="org.eclipse.jdt.core.formatter.keep_method_body_on_one_line" value="one_line_if_empty"/>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 43.2K bytes
    - Click Count (0)
  2. doc/godebug.md

    Dmitri Shuralyov <******@****.***> 1773867234 -0400
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 15:49:10 GMT 2026
    - 26K bytes
    - Click Count (0)
  3. internal/s3select/jstream/README.md

    Klaus Post <******@****.***> 1727120141 -0700
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Sep 23 19:35:41 GMT 2024
    - 3.2K bytes
    - Click Count (0)
  4. ci/official/utilities/extract_resultstore_links.py

            if verbose:
              print(f'Found failed invocation: {url.rsplit("/")[-1]}\n'
                    f'Log fragment:\n'
                    f'```\n{log_fragment}\n```\n'
                    f'{"=" * 140}')
            break
          k -= 1
    
        # A low-effort attempt to find the bazel command that triggered the
        # invocation.
        bazel_comm_min_line_i = (previous_end_line if previous_end_line is not None
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

                LOGGER.quiet("  JAVA_HOME             : " + gradleJvm.getJavaHome());
            }
            LOGGER.quiet("  Random Testing Seed   : " + BuildParams.getTestSeed());
            LOGGER.quiet("  In FIPS 140 mode      : " + BuildParams.isInFipsJvm());
            LOGGER.quiet("=======================================");
        }
    
        private JavaVersion determineJavaVersion(String description, File javaHome, JavaVersion requiredVersion) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  6. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidEncryptionKeyID-136]
    	_ = x[ErrInsecureSSECustomerRequest-137]
    	_ = x[ErrSSEMultipartEncrypted-138]
    	_ = x[ErrSSEEncryptedObject-139]
    	_ = x[ErrInvalidEncryptionParameters-140]
    	_ = x[ErrInvalidEncryptionParametersSSEC-141]
    	_ = x[ErrInvalidSSECustomerAlgorithm-142]
    	_ = x[ErrInvalidSSECustomerKey-143]
    	_ = x[ErrMissingSSECustomerKey-144]
    	_ = x[ErrMissingSSECustomerKeyMD5-145]
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  7. internal/etag/etag_test.go

    Harshavardhana <******@****.***> 1744208919 -0700
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 09 14:28:39 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.14.md

    - [v1.14.0-rc.1](#v1140-rc1)
    - [v1.14.0-beta.2](#v1140-beta2)
    - [v1.14.0-beta.1](#v1140-beta1)
    - [v1.14.0-alpha.3](#v1140-alpha3)
    - [v1.14.0-alpha.2](#v1140-alpha2)
    - [v1.14.0-alpha.1](#v1140-alpha1)
    
    
    
    # v1.14.0-rc.1
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.14.0-rc.1
    
    
    filename | sha512 hash
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Mon Jun 14 22:06:39 GMT 2021
    - 271.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/primitives/UnsignedLong.java

       * returns the low 64 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedLong plus(UnsignedLong val) {
        return fromLongBits(this.value + checkNotNull(val).value);
      }
    
      /**
       * Returns the result of subtracting this and {@code val}. If the result would have more than 64
       * bits, returns the low 64 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedLong minus(UnsignedLong val) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/primitives/UnsignedInteger.java

       * returns the low 32 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedInteger plus(UnsignedInteger val) {
        return fromIntBits(this.value + checkNotNull(val).value);
      }
    
      /**
       * Returns the result of subtracting this and {@code val}. If the result would be negative,
       * returns the low 32 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedInteger minus(UnsignedInteger val) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 8.3K bytes
    - Click Count (0)
Back to Top