Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for parameter (0.17 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      // catching() uses a plain Function, so there's no testCatching_nullInsteadOfFuture().
    
      // Some tests of the exceptionType parameter:
    
      public void testCatching_Throwable() throws Exception {
        Function<Throwable, Integer> fallback = functionReturningOne();
        ListenableFuture<Integer> originalFuture = immediateFailedFuture(new IOException());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

          this.matcher = SmallCharMatcher.from(tmp, "");
        }
        this.string = checkString(length, percent, config.matchingChars, new Random(), forceSlow, web);
      }
    
      // Caliper recognizes int-parameter methods beginning with "time"
    
      @Benchmark
      int trimAndCollapseFromString(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += matcher.trimAndCollapseFrom(string, '!').length();
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

          this.matcher = SmallCharMatcher.from(tmp, "");
        }
        this.string = checkString(length, percent, config.matchingChars, new Random(), forceSlow, web);
      }
    
      // Caliper recognizes int-parameter methods beginning with "time"
    
      @Benchmark
      int trimAndCollapseFromString(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += matcher.trimAndCollapseFrom(string, '!').length();
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

       */
      public static <C extends @Nullable Object, K extends C, V extends @Nullable Object>
          TreeMap<K, V> newTreeMap(@CheckForNull Comparator<C> comparator) {
        // Ideally, the extra type parameter "C" shouldn't be necessary. It is a
        // work-around of a compiler type inference quirk that prevents the
        // following code from being compiled:
        // Comparator<Class<?>> comparator = null;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    	// Handle encryption
    	encMetadata := make(map[string]string)
    	// Encryption parameters not applicable for this object.
    	if _, ok := crypto.IsEncrypted(srcInfo.UserDefined); !ok && crypto.SSECopy.IsRequested(r.Header) {
    		writeErrorResponse(ctx, w, toAPIError(ctx, errInvalidEncryptionParameters), r.URL)
    		return
    	}
    	// Encryption parameters not present for this object.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123508](https://github.com/kubernetes/kubernetes/pull/123508), [@saschagrunert](https://github.com/saschagrunert))
    - Dynamic Resource Allocation: DRA drivers can now use "structured parameters" to let the scheduler handle claim allocation.
       ([#123516](https://github.com/kubernetes/kubernetes/pull/123516), [@pohly](https://github.com/pohly))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		})
    		return
    	}
    	dsc, err := parseReplicateDecision(ctx, bucket, dobj.ReplicationState.ReplicateDecisionStr)
    	if err != nil {
    		replLogOnceIf(ctx, fmt.Errorf("unable to parse replication decision parameters for bucket: %s, err: %s, decision: %s",
    			bucket, err, dobj.ReplicationState.ReplicateDecisionStr), dobj.ReplicationState.ReplicateDecisionStr)
    		sendEvent(eventArgs{
    			BucketName: bucket,
    			Object: ObjectInfo{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. api/maven-api-model/src/main/mdo/maven.mdo

          <name>Profile</name>
          <superClass>ModelBase</superClass>
          <version>4.0.0+</version>
          <description>Modifications to the build process which is activated based on environmental
            parameters or command line arguments.</description>
          <fields>
            <field>
              <name>id</name>
              <required>true</required>
              <version>4.0.0+</version>
              <type>String</type>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top