Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isIndy (0.12 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

            ?: ""
    
    
    private
    val ApiTypeUsage.isGroovyNamedArgumentMap
        get() = isMap && (
            typeArguments.all { it.isAny }
                || typeArguments.all { it.isStarProjectionTypeUsage }
                || (typeArguments[0].isString && (typeArguments[1].isStarProjectionTypeUsage || typeArguments[1].isAny))
            )
    
    
    private
    object SourceNames {
        const val javaClass = "java.lang.Class"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 21:41:53 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    * If a `groovy-all(-indy)` Jar is found on `classpath`, that jar will be added to `groovyClasspath`.
    * If a `groovy(-indy)` jar is found on `classpath`, and the project has at least one repository declared, a corresponding `groovy(-indy)` repository dependency will be added to `groovyClasspath`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. pkg/config/validation/envoyfilter/envoyfilter.go

    	}
    	message.Range(func(descriptor protoreflect.FieldDescriptor, value protoreflect.Value) bool {
    		m, isMessage := value.Interface().(protoreflect.Message)
    		if isMessage {
    			anyMessage, isAny := m.Interface().(*anypb.Any)
    			if isAny {
    				mt, err := protoregistry.GlobalTypes.FindMessageByURL(anyMessage.TypeUrl)
    				if err != nil {
    					topError = err
    					return false
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

        return failure();
    
      // Reshape recurrent weights to vectors if indy behaviour is enabled.
      // IndyLSTMs are a LSTM variant with diagonal recurrent weight
      // matrices. For optimization purposes these are provided as vectors.
      Value recurrent_to_input_weights =
          indy ? mlir::cast<Value>(
                     CreateFlattenOP(recurrent_weights_array->getResult(0),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val KaType.isCharSequence: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.CHAR_SEQUENCE) }
        public val KaType.isAny: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.ANY) }
        public val KaType.isNothing: Boolean get() = withValidityAssertion { isClassTypeWithClassId(DefaultTypeClassIds.NOTHING) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            groovyDependency = groovyModuleDependency("groovy", versionNumber)
        }
    
        def "compileGoodCode"() {
            if (module == "groovy-all") {
                // No groovy-all for indy variant
                Assume.assumeTrue(versionClassifier != "indy")
            }
            groovyDependency = groovyModuleDependency(module, versionNumber)
    
            expect:
            succeeds("compileGroovy")
            groovyClassFile("Person.class").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * Only takes effect when compiling against Groovy 1.8 or higher.
         *
         * <p>Known options are:
         *
         * <dl>
         *     <dt>indy
         *     <dd>Use the invokedynamic bytecode instruction. Requires JDK7 or higher and Groovy 2.0 or higher. Disabled by default.
         *     <dt>int
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        func.eraseBody();
        func.addEntryBlock();
        OpBuilder builder(func.getBody());
        if (failed(ConvertKerasLSTMLayer(func, &builder)))
          return signalPassFailure();
      }
    
      // LSTM `func::FuncOps` with indy behavior always have the `tf.api_implements`
      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
         * Gradle's bytecode processor replaces the Groovy's original {@link IndyInterface#bootstrap(MethodHandles.Lookup, String, MethodType, String, int)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top