Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 934 for Reflection (0.47 sec)

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

       * after serialization.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static List<Method> getInverseSameAfterSerializingMethods() {
        return Collections.singletonList(getMethod("testInverseSerialization"));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      private static Method getMethod(String methodName) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/ReflectionDemo.kt

    package org.gradle.internal.declarativedsl.demo.demoSimple
    
    import org.gradle.internal.declarativedsl.demo.reflection.reflectAndPrint
    
    
    object ReflectionDemo {
        @JvmStatic
        fun main(args: Array<String>) {
            schema.reflectAndPrint(
                """
                plugins {
                    val kotlinVersion = "1.9.20"
    
                    id("org.jetbrains.kotlin.jvm") version kotlinVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 659 bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java

       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5045147">Sun bug 5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getAddAllNullUnsupportedMethod() {
        return Helpers.getMethod(CollectionAddAllTester.class, "testAddAll_nullUnsupported");
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/internal/reflectlite/tostring_test.go

    // Formatting of reflection types and values for debugging.
    // Not defined as methods so they do not need to be linked into most binaries;
    // the functions are not used by the library itself, only in tests.
    
    package reflectlite_test
    
    import (
    	. "internal/reflectlite"
    	"reflect"
    	"strconv"
    )
    
    // valueToString returns a textual representation of the reflection value val.
    // For debugging only.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

     * in its own subproject and uses as little dependencies as possible (in particular
     * it only depends on JDK types).
     *
     * It's accessed with reflection so move it with care to other packages.
     *
     * This class is therefore loaded (and tested) via reflection in org.gradle.api.internal.tasks.compile.JdkTools.
     */
    @SuppressWarnings("unused")
    public class IncrementalCompileTask implements JavaCompiler.CompilationTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

       * after serialization.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static List<Method> getInverseSameAfterSerializingMethods() {
        return Collections.singletonList(getMethod("testInverseSerialization"));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      private static Method getMethod(String methodName) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java

       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5045147">Sun bug 5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getAddAllNullUnsupportedMethod() {
        return Helpers.getMethod(CollectionAddAllTester.class, "testAddAll_nullUnsupported");
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/module-info.java

    module org.gradle.sample.app {
        exports org.gradle.sample.app;
        opens org.gradle.sample.app.data; // allow Gson to access via reflection
    
        requires com.google.gson;
        requires org.apache.commons.lang3;
        requires org.apache.commons.cli;
        requires org.apache.commons.beanutils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 295 bytes
    - Viewed (0)
  9. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.checker.units.qual
    org.checkerframework.common.aliasing
    org.checkerframework.common.aliasing.qual
    org.checkerframework.common.basetype
    org.checkerframework.common.reflection
    org.checkerframework.common.reflection.qual
    org.checkerframework.common.subtyping
    org.checkerframework.common.util
    org.checkerframework.common.util.count
    org.checkerframework.common.util.debug
    org.checkerframework.common.util.report
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/BUILD

    # Generic schema for inference on device (but with reflections makes bigger).
    flatbuffer_cc_library(
        name = "schema_fbs_with_reflection",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
        flatc_args = [
            "--reflect-types",
            "--reflect-names",
            "--no-union-value-namespacing",
            "--gen-object-api",
        ],
        out_prefix = "reflection/",
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top