Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,546 for method1 (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups-in.yaml

            ports: ["80"]
            methods: ["to-mix-method"]
      # Only L4
      - from:
        - source:
            principals: ["only-l4-principals"]
            namespaces: ["only-l4-ns"]
        to:
        - operation:
            ports: ["80"]
      # Only L7
      - from:
        - source:
            requestPrincipals: ["l7-principal"]
        to:
        - operation:
            paths: ["/l7-foo"]
            methods: ["l7-method"]
      # L4 and L7 when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/subr.go

    	return n
    }
    
    // CalcMethods calculates all the methods (including embedding) of a non-interface
    // type t.
    func CalcMethods(t *types.Type) {
    	if t == nil || len(t.AllMethods()) != 0 {
    		return
    	}
    
    	// mark top-level method symbols
    	// so that expand1 doesn't consider them.
    	for _, f := range t.Methods() {
    		f.Sym.SetUniq(true)
    	}
    
    	// generate all reachable methods
    	slist = slist[:0]
    	expand1(t, true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMapEntry.java

    /**
     * A map entry which forwards all its method calls to another map entry. Subclasses should override
     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups-in.yaml

            ports: ["80"]
            methods: ["to-mix-method"]
      # Only L4
      - from:
        - source:
            principals: ["only-l4-principals"]
            namespaces: ["only-l4-ns"]
        to:
        - operation:
            ports: ["80"]
      # Only L7
      - from:
        - source:
            requestPrincipals: ["l7-principal"]
        to:
        - operation:
            paths: ["/l7-foo"]
            methods: ["l7-method"]
      # L4 and L7 when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

    /**
     * A map entry which forwards all its method calls to another map entry. Subclasses should override
     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

        return getMethod(methodName, arguments).invoke(lockLikeObject, arguments);
      }
    
      private Method getMethod(String methodName, Object... arguments) throws Exception {
        METHODS:
        for (Method method : lockLikeObject.getClass().getMethods()) {
          Class<?>[] parameterTypes = method.getParameterTypes();
          if (method.getName().equals(methodName) && (parameterTypes.length == arguments.length)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/GroovyMethods.java

                    Arrays.asList(GroovyObject.class.getMethods())
                ), new Function<Method, Equivalence.Wrapper<Method>>() {
                    @Override
                    public Equivalence.Wrapper<Method> apply(@Nullable Method input) {
                        return SIGNATURE_EQUIVALENCE.wrap(input);
                    }
                }
            )
        );
    
        /**
         * Is defined by Object or GroovyObject?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                }
                assert defaultTask.doStuff() == 'method'
                assert javaTask.doStuff() == 'method'
                assert groovyTask.doStuff() == 'method'
                assert configurations.test.doStuff() == 'method'
                configurations.test.dependencies.each {
                    assert it.doStuff() == 'method'
                }
                assert repositories.doStuff() == 'method'
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

        }
    
        def "only generates the requested boolean getter methods for type #type.simpleName"() {
            given:
            def impl = newNodeBackedInstance(type)
    
            when:
            def methods = impl.class.declaredMethods
            def getGetter = methods.find { it.name == 'getFlag' }
            def isGetter = methods.find { it.name == 'isFlag' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    			switch sym.Kind {
    			case stdlib.Func, stdlib.Var, stdlib.Const, stdlib.Type:
    				disallowed[pkg.Scope().Lookup(sym.Name)] = symver
    			}
    		}
    	}
    
    	// Pass 2: fields and methods.
    	//
    	// We allow fields and methods if their associated type is
    	// disallowed, as otherwise we would report false positives
    	// for compatibility shims. Consider:
    	//
    	//   //go:build go1.22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top