Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for reflectively (0.19 sec)

  1. platforms/software/resources-s3/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    
    dependencyAnalysis {
        issues {
            onUnusedDependencies() {
                // This need to exist to be loaded reflectively
                exclude(libs.awsS3Kms)
                exclude(libs.awsS3Sts)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

     * These JVM arguments should be passed to any Gradle process that will be running on Java 9+
     * Gradle accesses those packages reflectively. On Java versions 9 to 15, the users will get
     * a warning they can do nothing about. On Java 16+, strong encapsulation of JDK internals is
     * enforced and not having the explicit permissions for reflective accesses will result in runtime exceptions.
     */
    @NonNullApi
    public class JpmsConfiguration {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

      public static TestSuite suite() {
        // 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());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

      public static TestSuite suite() {
        // 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());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalData.java

    package org.gradle.api.problems.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     * <p>
     * This is effectively a sealed interface that is used to restrict the types of additional data that can be attached to a problem.
     * The list interfaces supported by the problems API are:
     * <ul>
     *     <li>{@link GeneralData}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.h

    ReadStatistics(absl::string_view calibration_data_dir);
    
    // Adds calibrated min / max values to CustomAggregator nodes in `graph_def`.
    // The min and max values will be added to the "min" and "max" attributes,
    // respectively. `calibration_options` provides the strategy to retrieve min and
    // max values.
    absl::Status AddCalibrationStatistics(
        mlir::ModuleOp module_op, absl::string_view calibration_data_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtVisibilityCheckerMixIn.kt

        ): Boolean = withValidityAssertion {
            analysisSession.visibilityChecker.isVisible(candidateSymbol, useSiteFile, position, receiverExpression)
        }
    
        /**
         * Returns true for effectively public symbols, including internal declarations with @PublishedApi annotation.
         * In 'Explicit API' mode explicit visibility modifier and explicit return types are required for such symbols.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pilot/pkg/features/ambient.go

    		"PILOT_AUTO_ALLOW_WAYPOINT_POLICY",
    		false, false,
    		"If enabled, zTunnel will receive synthetic authorization policies for each workload ALLOW the Waypoint's identity. "+
    			"Unless other ALLOW policies are created, this effectively denies traffic that doesn't go through the waypoint.")
    )
    
    // registerAmbient registers a variable that is allowed only if EnableAmbient is set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

    import org.gradle.api.internal.plugins.software.SoftwareType
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ErrorHandlingOnReflectiveCallsSpec extends AbstractIntegrationSpec {
    
        def 'when reflective invocation fails the cause is identified correctly'() {
            given:
            file("build-logic/build.gradle") << """
                plugins {
                    id('java-gradle-plugin')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top