Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,171 for METHOD (0.38 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // `kQuantizationMethodAttr` string attribute. Returns a default instance of
    // `Method` iff the attribute doesn't exist or the attribute contains an invalid
    // textproto for `Method`. `op` must be non-null.
    ::stablehlo::quantization::Method GetQuantizationMethodOrDefault(
        absl::Nonnull<Operation*> op);
    
    // Creates a function to wrap the section between arguments and results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.txt

    public final class Child {
        // source: 'main.kt'
        public method <init>(): void
        private final method bar(): void
        protected method onCreate(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 162 bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
            for (ServiceMethod method : methods.configurers) {
                applyConfigureMethod(method, target);
            }
        }
    
        private void applyConfigureMethod(ServiceMethod method, Object target) {
            Object[] params = new Object[method.getParameterTypes().length];
            for (int i = 0; i < method.getParameterTypes().length; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // we create a test suite containing a test for every AbstractFutureTest test method and we
        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/stored.rules

    no\ classes\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\ or\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    }
                }
    
                // Query the declared methods of the meta class
                for (MetaMethod method : metaClass.getMethods()) {
                    if (method.getName().equals("propertyMissing") && method.getParameterTypes().length == 1) {
                        return method;
                    }
                }
                return null;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      //
      // It should look like:
      //
      // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
      // specs {
      //   matcher {function_name {regex: "composite_conv.*"}}
      //   method {static_range_ptq {...}}}
      // }
      // specs {
      //   matcher {function_name {regex: "composite_dot_general_fn_1"}}
      //   method {no_quantization {}}
      // }
      const QuantizationConfig new_config = ExpandPresets(config);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue66285.go

    package p
    
    import "io"
    
    // A "duplicate method" error should be reported for
    // all these interfaces, irrespective of which package
    // the embedded Reader is coming from.
    
    type _ interface {
    	Reader
    	Reader // ERROR "duplicate method Read"
    }
    
    type Reader interface {
    	Read(p []byte) (n int, err error)
    }
    
    type _ interface {
    	io.Reader
    	Reader // ERROR "duplicate method Read"
    }
    
    type _ interface {
    	io.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

          to:
            - operation:
                methods: ["method", "method-prefix-*", "*-suffix-method", "*"]
                hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
                ports: ["80", "90"]
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top