Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,577 for METHOD (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

     * A property can be _read_ if there is a method named `get<PropertyName>` with zero arguments that returns the same type as the property.
     * A property can be _modified_ if there is a method named `set<PropertyName>` with one argument that has the same type as the property and a return type of `void`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      private boolean matches(Test test) {
        Method method;
        try {
          method = extractMethod(test);
        } catch (IllegalArgumentException e) {
          logger.finer(Platform.format("%s: including by default: %s", test, e.getMessage()));
          return true;
        }
        if (suppressedTests.contains(method)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    // so we can detect and manipulated them here.
    //
    // There are three ways a method of a reachable type can be invoked:
    //
    //  1. direct call
    //  2. through a reachable interface type
    //  3. reflect.Value.Method (or MethodByName), or reflect.Type.Method
    //     (or MethodByName)
    //
    // The first case is handled by the flood fill, a directly called method
    // is marked as reachable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top