Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,404 for melhor (0.14 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedSortedSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForAbstractSet() {
        return Collections.emptySet();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

        val headers = headersOf("User-Agent", "RequestTest")
        val method = "PUT"
        val request =
          Request(
            url = url,
            headers = headers,
            method = method,
            body = body,
          )
        assertThat(request.url).isEqualTo(url)
        assertThat(request.headers).isEqualTo(headers)
        assertThat(request.method).isEqualTo(method)
        assertThat(request.body).isEqualTo(body)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                - orRules:
                    rules:
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[1]
                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[2]
                - orRules:
                    rules:
                    - urlPath:
                        path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return suite;
      }
    
      protected Collection<Method> suppressForCheckedNavigableSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptySet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptyNavigableSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForEmptySortedSet() {
        return Collections.emptySet();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

    class FreshValueGenerator {
    
      private static final ImmutableMap<Class<?>, Method> GENERATORS;
    
      static {
        ImmutableMap.Builder<Class<?>, Method> builder = ImmutableMap.builder();
        for (Method method : FreshValueGenerator.class.getDeclaredMethods()) {
          if (method.isAnnotationPresent(Generates.class)) {
            builder.put(method.getReturnType(), method);
          }
        }
        GENERATORS = builder.buildOrThrow();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

            failure.assertHasCause('''Type BrokenRuleSource is not a valid rule source:
    - Method broken() is not a valid rule method: A rule method cannot be private
    - Method broken() is not a valid rule method: A method annotated with @Validate must have at least one parameter''')
        }
    
        def "reports unbound parameters for rules on applied RuleSource"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. pkg/kubelet/status/testing/mock_pod_status_provider.go

    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockPodManager) EXPECT() *MockPodManagerMockRecorder {
    	return m.recorder
    }
    
    // GetMirrorPodByPod mocks base method.
    func (m *MockPodManager) GetMirrorPodByPod(arg0 *v1.Pod) (*v1.Pod, bool) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetMirrorPodByPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(bool)
    	return ret0, ret1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

        }
    
        def "entry method setValue changes map"() {
            when:
            def map = getMapUnderTestToWrite()
            def entry = map.entrySet().find { entry -> entry.getKey() == 'existing' }
    
            def result = entry.setValue('newValue')
    
            then:
            result == 'existingValue'
            map['existing'] == 'newValue'
        }
    
        def "entry method setValue reports change"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            val loadedClass = loadClass()
            val method = loadedClass.getMethod(methodName)
            val instance = loadedClass.getDeclaredConstructor().newInstance()
            return method.invoke(instance)
        }
    
        fun callStatic(methodName: String): Any {
            val loadedClass = loadClass()
            val method = loadedClass.getMethod(methodName)
            return method.invoke(loadedClass)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

            StubRequest stubRequest = httpStub.request
            String path = stubRequest.path
            assert path.startsWith('/')
            assert path == request.pathInfo
            assert stubRequest.method == request.method
            assert stubRequest.params.every {
                request.getParameterMap()[it.key] == it.value
            }
        }
    
        boolean requestMatches(HttpStub httpStub, HttpServletRequest request) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top