Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for argumentTypes (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                    LambdaFactoryDetails factory = factoriesIterator.peek();
                    Type[] argumentTypes = Type.getArgumentTypes(factory.descriptor);
    
                    int codeSizeSoFar = sizeEvaluator.getMaxSize();
                    if (codeSizeSoFar + getEstimatedSingleLambdaHandlingCodeLength(argumentTypes) + getEstimatedEpilogueLength() >= MAX_CODE_SIZE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                            // Invoke the original method:
                            Type[] argumentTypes = Type.getArgumentTypes(methodData.descriptor);
                            for (int argIndex = 1; argIndex <= argumentTypes.length; ++argIndex) {
                                visitVarInsn(argumentTypes[argIndex - 1].getOpcode(Opcodes.ILOAD), argIndex);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

            val typeParameterSymbols = symbol.typeParameterSymbols ?: return superTypes.asSequence()
            val argumentTypes = (session.typeContext.captureArguments(this, CaptureStatus.FROM_EXPRESSION)?.toList()
                ?: this.typeArguments.mapNotNull { it.type })
    
            require(typeParameterSymbols.size == argumentTypes.size) {
                val renderedSymbol = FirRenderer.noAnnotationBodiesAccessorAndArguments().renderElementAsString(symbol.fir)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            Type returnType = Type.getReturnType(standardDescriptor);
            Type[] argumentTypes = Type.getArgumentTypes(standardDescriptor);
            Type[] argumentTypesWithDefault = Stream.concat(
                Arrays.stream(argumentTypes),
                Stream.of(Type.getType(int.class), Type.getType(Object.class))
            ).toArray(Type[]::new);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            options[2].argumentType == Void.TYPE
            options[2].availableValues == [] as Set
    
            options[3].name == "no-booleanValue"
            options[3].description == "Disables option --booleanValue."
            options[3].argumentType == Void.TYPE
            options[3].availableValues == [] as Set
    
            options[4].name == "enumValue"
            options[4].description == "enum value"
            options[4].argumentType == String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        }
      }
    
      // Remove unread var handle arguments.
      for (int argument_index_to_remove :
           llvm::reverse(argument_indices_to_remove)) {
        block.eraseArgument(argument_index_to_remove);
        argument_types.erase(argument_types.begin() + argument_index_to_remove);
      }
    
      // Rewrite return if there are variable writes.
      const int return_operands_size = return_operands.size();
      if (return_operands_size > num_results_before) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        std::vector<Type> argument_types;
        for (auto arg : f.getBody().front().getArguments()) {
          argument_types.push_back(arg.getType());
        }
        std::vector<Type> return_types;
        for (auto ret_op : ret->getOperands()) {
          return_types.push_back(ret_op.getType());
        }
        auto newType =
            FunctionType::get(rewriter.getContext(), argument_types, return_types);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      }
    }
    
    // Updates 'while_op' signatures based on which arguments should be removed
    // in 'arguments_to_erase'.
    template <typename T, typename U>
    T GetUpdatedWhileOp(T while_op, const U& argument_types,
                        const llvm::SmallVector<unsigned, 4>& arguments_to_erase) {
      OpBuilder builder(while_op);
      llvm::SmallVector<Type, 4> new_operand_types;
      llvm::SmallVector<Value> new_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. gradle/wrapper/gradle-wrapper.jar

    CommandLineArgumentE extends RuntimeException { public void CommandLineArgumentE(String); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public final synchronized class CommandLineOption { public final java.util.HashSet options; public Class argumentType; public String description; public final java.util.HashSet groupWith; public void CommandLineOption(java.util.List); public final java.util.HashSet getOptions(); } org/gradle/cli/CommandLineParser$AfterOptions.class package org.gradle.cli; public...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  10. gradle/wrapper/gradle-wrapper.jar

    CommandLineArgumentE extends RuntimeException { public void CommandLineArgumentE(String); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public final synchronized class CommandLineOption { public final java.util.HashSet options; public Class argumentType; public String description; public final java.util.HashSet groupWith; public void CommandLineOption(java.util.List); public final java.util.HashSet getOptions(); } org/gradle/cli/CommandLineParser$AfterOptions.class package org.gradle.cli; public...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
Back to top