Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for get_arg (0.13 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.ir.txt

                    CALL 'private final fun TopAppBar (title: kotlin.String): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                      title: GET_VAR 'title: kotlin.String declared in <root>.ArticleScreenContent' type=kotlin.String origin=null
              bottomBar: GET_VAR 'bottomBarContent: @[MyComposable] kotlin.Function0<kotlin.Unit> declared in <root>.ArticleScreenContent' type=@[MyComposable] kotlin.Function0<kotlin.Unit> origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.cc

        << ") cost(" << op->getAttrOfType<mlir::IntegerAttr>("_tfrt_cost").getInt()
        << ") device(" << op->getAttr("device") << ") " << op->getAttr("op_name")
        << '(' << op.getArgs() << ')';
    
      fallback_common::PrintExecuteOpCommon(p, op);
      fallback_common::PrintExecuteOpFuncAttribute(p, op);
      if (!op.getResults().empty()) p << " : " << op.getResults().size();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecSpec.java

        @Override
        public ExecSpec setArgs(Iterable<?> arguments) {
            argumentsSpec.setArgs(arguments);
            return this;
        }
    
        @Override
        public List<String> getArgs() {
            return argumentsSpec.getArgs();
        }
    
        @Override
        public List<CommandLineArgumentProvider> getArgumentProviders() {
            return argumentsSpec.getArgumentProviders();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Request.java

        public Request(Object arg, BuildOperationRef buildOperation) {
            Preconditions.checkNotNull(buildOperation);
            this.arg = arg;
            this.buildOperation = buildOperation;
        }
    
        public Object getArg() {
            return arg;
        }
    
        public BuildOperationRef getBuildOperation() {
            return buildOperation;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/ProcessArgumentsSpec.java

            setArgs(argsList.subList(1, argsList.size()));
            return this;
        }
    
        public List<String> getAllArguments() {
            List<String> allArgs;
            List<String> args = getArgs();
            if (args == null) {
                allArgs = new ArrayList<>();
            } else {
                allArgs = new ArrayList<>(args);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

                    "-arg1", "-arg2"].flatten()
    
            when:
            LinkerSpec spec = Mock(SharedLibraryLinkerSpec)
            spec.getSystemArgs() >> ['-sys1', '-sys2']
            spec.getArgs() >> ['-arg1', '-arg2']
            spec.getOutputFile() >> outputFile
            spec.getLibraries() >> []
            spec.getLibraryPath() >> []
            spec.getInstallName() >> "installName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/RequestSerializer.java

            this.skipIncomingArg = skipIncomingArg;
        }
    
        @Override
        public void write(Encoder encoder, Request request) throws Exception {
            encoder.encodeChunked(target -> {
                Object object = request.getArg();
                argSerializer.write(target, object);
            });
    
            encoder.writeLong(request.getBuildOperation().getId().getId());
            OperationIdentifier parentId = request.getBuildOperation().getParentId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

                                arg0: CALL 'public final fun rem (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PERC
                                  $this: GET_VAR 'it: kotlin.Int declared in <root>.CodeFragment.run.<anonymous>' type=kotlin.Int origin=null
                                  other: CONST Int type=kotlin.Int value=2
                                arg1: CONST Int type=kotlin.Int value=0
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

                $this: GET_VAR '<this>: <root>.Child declared in <root>.Child.onCreate' type=<root>.Child origin=null
              CALL 'private final fun bar (): kotlin.Unit declared in <root>.Child' type=kotlin.Unit origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      if (!dq_op) {
        auto mul_op = builder.create<TF::MulOp>(loc, value, multiplier);
        return mul_op.getResult();
      }
      auto q_op = dq_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
      if (!q_op) return {};
    
      Value float_value = q_op.getArg();
      Value new_value = builder.create<TF::MulOp>(loc, float_value, multiplier);
      auto new_value_type = mlir::cast<TensorType>(new_value.getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top