Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for multiplier (0.66 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns the single element contained in {@code iterator}.
       *
       * @throws NoSuchElementException if the iterator is empty
       * @throws IllegalArgumentException if the iterator contains multiple elements. The state of the
       *     iterator is unspecified.
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T getOnlyElement(Iterator<T> iterator) {
        T first = iterator.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns the single element contained in {@code iterator}.
       *
       * @throws NoSuchElementException if the iterator is empty
       * @throws IllegalArgumentException if the iterator contains multiple elements. The state of the
       *     iterator is unspecified.
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T getOnlyElement(Iterator<T> iterator) {
        T first = iterator.next();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            InvalidModelRuleException e = thrown()
            e.cause instanceof ModelRuleBindingException
            normaliseLineSeparators(e.cause.message) == """Type-only model reference of type java.lang.Number is ambiguous as multiple model elements are available for this type:
      - other-1 (created by: other-1 creator)
      - other-2 (created by: other-2 creator)"""
        }
    
        def "cannot register already known element"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. cmd/erasure-healing_test.go

    	var opts ObjectOptions
    
    	err = objLayer.MakeBucket(ctx, bucket, MakeBucketOptions{})
    	if err != nil {
    		t.Fatalf("Failed to make a bucket - %v", err)
    	}
    
    	// Create an object with multiple parts uploaded in decreasing
    	// part number.
    	res, err := objLayer.NewMultipartUpload(ctx, bucket, object, opts)
    	if err != nil {
    		t.Fatalf("Failed to create a multipart upload - %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// On return, ok is true if one was found.
    	Get(sessionKey string) (session *ClientSessionState, ok bool)
    
    	// Put adds the ClientSessionState to the cache with the given key. It might
    	// get called multiple times in a connection if a TLS 1.3 server provides
    	// more than one session ticket. If called with a nil *ClientSessionState,
    	// it should remove the cache entry.
    	Put(sessionKey string, cs *ClientSessionState)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	//
    	// Guaranteed to always be a multiple of physPageSize on systems where
    	// physPageSize <= pageSize since we map new heap memory at a size larger than
    	// any physPageSize and released memory in multiples of the physPageSize.
    	//
    	// However, certain functions recategorize heap memory as other stats (e.g.
    	// stacks) and this happens in multiples of pageSize, so on systems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				{
    					ServicePort: &model.Port{
    						Name:     "tcp-port",
    						Port:     8080,
    						Protocol: "TCP",
    					},
    					TargetPort: 8080,
    				},
    			},
    		},
    		{
    			name: "multiple proxy ips multiple ports",
    			pods: []*corev1.Pod{pod1},
    			ips:  []string{"128.0.0.1", "192.168.2.6"},
    			ports: []corev1.ServicePort{
    				{
    					Name:       "tcp-port-1",
    					Port:       8080,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            """
    
            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:fooJar', ':a:checkDebug')
        }
    
        def "cannot choose a configuration when multiple partial matches are found"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  New: `RecordedRequest.getHandshake()` returns the HTTPS handshake of a request sent to
        `MockWebServer`.
     *  Fix: Honor the `MockResponse` header delay in MockWebServer.
     *  Fix: Don't release HTTP/2 connections that have multiple canceled calls. We had a bug where
        canceling calls would cause the shared HTTP/2 connection to be unnecessarily released. This
        harmed connection reuse.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top