Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 966 for look (0.04 sec)

  1. apache-maven/src/assembly/maven/bin/mvn.cmd

    1. @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    2. @REM Fallback to current working directory if not found.
    3.  
    4. set "EXEC_DIR=%CD%"
    5. set "WDIR=%EXEC_DIR%"
    6.  
    7. @REM Look for the --file switch and start the search for the .mvn directory from the specified
    8. @REM POM location, if supplied.
    9.  
    10. set FILE_ARG=
    11. :arg_loop
    12. if "%~1" == "-f" (
    13. set "FILE_ARG=%~2"
    14. shift
    15. goto process_file_arg
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

    1. if (localInputFuture != null) {
    2. String message = "inputFuture=[" + localInputFuture + "]";
    3. if (localTimer != null) {
    4. long delay = localTimer.getDelay(MILLISECONDS);
    5. // Negative delays look confusing in an error message
    6. if (delay > 0) {
    7. message += ", remaining delay=[" + delay + " ms]";
    8. }
    9. }
    10. return message;
    11. }
    12. return null;
    13. }
    14.  
    15. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

    1. static {
    2. ImmutableSet.Builder<Long> testLongsBuilder = ImmutableSet.builder();
    3. ImmutableSet.Builder<BigInteger> testBigIntegersBuilder = ImmutableSet.builder();
    4.  
    5. // The values here look like 111...11101...010 in binary, where the initial 111...1110 takes
    6. // up exactly as many bits as can be represented in the significand (24 for float, 53 for
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

    1. * the beginning, thanks to using different `-source -target` values for compiling our `-jre` and
    2. * `-android` "flavors.")
    3. *
    4. * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how
    5. * that affects users, especially users of the Android Gradle Plugin, since the plugin developers
    6. * put in a special hack for us: https://issuetracker.google.com/issues/131431257)
    7. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ListenableFuture.java

    1. * the beginning, thanks to using different `-source -target` values for compiling our `-jre` and
    2. * `-android` "flavors.")
    3. *
    4. * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how
    5. * that affects users, especially users of the Android Gradle Plugin, since the plugin developers
    6. * put in a special hack for us: https://issuetracker.google.com/issues/131431257)
    7. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

    1. return expression.substring(start, idx);
    2. }
    3.  
    4. public int getPosition() {
    5. return idx < expression.length() ? idx : EOF;
    6. }
    7.  
    8. // to make tokenizer look pretty in debugger
    9. @Override
    10. public String toString() {
    11. return idx < expression.length() ? expression.substring(idx) : "<EOF>";
    12. }
    13. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/extra-models.md

    1. ///
    2.  
    3. ## Multiple models
    4.  
    5. Here's a general idea of how the models could look like with their password fields and the places where they are used:
    6.  
    7. //// tab | Python 3.10+
    8.  
    9. ```Python hl_lines="7 9 14 20 22 27-28 31-33 38-39"
    10. {!> ../../docs_src/extra_models/tutorial001_py310.py!}
    11. ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. docs/bucket/lifecycle/README.md

    1. ------------|----------|------------|--------|--------------|--------------|------------------|------------------|------------------
    2. ```
    3.  
    4. ## 3. Activate ILM versioning features
    5.  
    6. This will only work with a versioned bucket, take a look at [Bucket Versioning Guide](https://min.io/docs/minio/linux/administration/object-management/object-versioning.html) for more understanding.
    7.  
    8. ### 3.1 Automatic removal of non current objects versions
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jul 09 01:45:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cmd/signature-v4-utils.go

    1. return hex.EncodeToString(sum256[:])
    2. }
    3.  
    4. var (
    5. defaultSha256Cksum string
    6. v []string
    7. ok bool
    8. )
    9.  
    10. // For a presigned request we look at the query param for sha256.
    11. if isRequestPresignedSignatureV4(r) {
    12. // X-Amz-Content-Sha256, if not set in presigned requests, checksum
    13. // will default to 'UNSIGNED-PAYLOAD'.
    14. defaultSha256Cksum = unsignedPayload
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. ci/official/utilities/extract_resultstore_links.py

    1. f'{command}\n\n')
    2. else:
    3. failure_msg = ('\nCouldn\'t parse a bazel command '
    4. 'matching the invocation, inside the log. '
    5. 'Please look for it in the build log.\n\n')
    6. failure_msg += (
    7. f'See the ResultStore link for a detailed view of failed targets:\n'
    8. f'{url}\n\n')
    9. failure_msg += (
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top