Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 403 for Reflection (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. guava-testlib/src/com/google/common/collect/testing/testers/CollectionSpliteratorTester.java

        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getSpliteratorNotImmutableCollectionAllowsAddMethod() {
        return Helpers.getMethod(
            CollectionSpliteratorTester.class, "testSpliteratorNotImmutable_CollectionAllowsAdd");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getSpliteratorNotImmutableCollectionAllowsRemoveMethod() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringStripper.java

                        idSignatures = Collections.emptyList();
                    }
    
                    // unfortunately, the PGPPublicKey constructor is package private, so we need to use reflection
                    stripped = KEY_CONSTRUCTOR.newInstance(
                        key.getPublicKeyPacket(),
                        null,
                        Collections.emptyList(),
                        ids,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt

    import java.lang.reflect.Method
    import javax.net.ssl.SSLSocket
    import okhttp3.Protocol
    import okhttp3.internal.platform.AndroidPlatform
    import okhttp3.internal.platform.Platform
    
    /**
     * Modern reflection based SocketAdapter for Conscrypt class SSLSockets.
     *
     * This is used directly for providers where class name is known e.g. the Google Play Provider
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top