Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for suffix (0.18 sec)

  1. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        final String refreshKey = "refresh";
        final String suffix = "Suffix";
    
        CacheLoader<String, String> computeFunction =
            new CacheLoader<String, String>() {
              @Override
              public String load(String key) throws InterruptedException {
                getStartedSignal.countDown();
                letGetFinishSignal.await();
                return key + suffix;
              }
            };
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 86.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        final String refreshKey = "refresh";
        final String suffix = "Suffix";
    
        CacheLoader<String, String> computeFunction =
            new CacheLoader<String, String>() {
              @Override
              public String load(String key) throws InterruptedException {
                getStartedSignal.countDown();
                letGetFinishSignal.await();
                return key + suffix;
              }
            };
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 86.2K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    # Add notification configuration on the `images` bucket using the MySQL ARN. The --suffix argument filters events.
    mc event add myminio/images arn:minio:sqs::1:postgresql --suffix .jpg
    # Print out the notification configuration on the `images` bucket.
    mc event list myminio/images
    mc event list myminio/images
    arn:minio:sqs::1:postgresql s3:ObjectCreated:*,s3:ObjectRemoved:* Filter: suffix=”.jpg”
    ```
    
    ### Step 4: Test on PostgreSQL
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  4. android/guava/src/com/google/common/base/CharMatcher.java

          int negatedCharacters = DISTINCT_CHARS - totalCharacters;
          String suffix = ".negate()";
          final String description = toString();
          String negatedDescription =
              description.endsWith(suffix)
                  ? description.substring(0, description.length() - suffix.length())
                  : description + suffix;
          return new NegatedFastMatcher(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

     *  Fix: Don't crash when reading the empty `HEAD` response body if it specifies
        a `Content-Length`.
     *  Fix: Don't crash if the thread is interrupted while reading the public
        suffix database.
     *  Fix: Use relative resource path when loading the public suffix database.
        Loading the resource using a path relative to the class prevents conflicts
        when the OkHttp classes are relocated (shaded) by allowing multiple private
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

          int negatedCharacters = DISTINCT_CHARS - totalCharacters;
          String suffix = ".negate()";
          final String description = toString();
          String negatedDescription =
              description.endsWith(suffix)
                  ? description.substring(0, description.length() - suffix.length())
                  : description + suffix;
          return new NegatedFastMatcher(
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	}
    
    	var suffix string
    	if len(values[peerRESTListenSuffix]) > 1 {
    		return grid.NewRemoteErrString("invalid request (peerRESTListenSuffix)")
    	}
    
    	if len(values[peerRESTListenSuffix]) == 1 {
    		if err := event.ValidateFilterRuleValue(values[peerRESTListenSuffix][0]); err != nil {
    			return grid.NewRemoteErr(err)
    		}
    
    		suffix = values[peerRESTListenSuffix][0]
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

      override fun toString(): String = url
    
      /**
       * Returns the domain name of this URL's [host] that is one level beneath the public suffix by
       * consulting the [public suffix list](https://publicsuffix.org). Returns null if this URL's
       * [host] is an IP address or is considered a public suffix by the public suffix list.
       *
       * In general this method **should not** be used to test whether a domain is valid or routable.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  9. src/main/java/jcifs/smb/SmbFile.java

            }
            if (name.endsWith(" ")) {
                final StringBuilder suffix = new StringBuilder();
                for (int i = name.length() - 1; i >= 0; i--) {
                    if (name.charAt(i) != ' ') {
                        break;
                    }
                    suffix.append("%20");
                }
                name = name.replaceAll(" +$", suffix.toString());
            }
            return "URL:" + name.replace("?", "%3f");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    		Code:           "InvalidArgument",
    		Description:    "filter rule name must be either prefix or suffix",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNamePrefix: {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
Back to top