Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for argsCount (0.14 sec)

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

            }
    
            @Override
            public Object intercept(Invocation invocation, String consumer) throws Throwable {
                int argsCount = invocation.getArgsCount();
                if (1 <= argsCount && argsCount <= 3) {
                    Optional<Process> result = tryCallExec(invocation.getReceiver(), invocation.getArgument(0), invocation.getOptionalArgument(1), invocation.getOptionalArgument(2), consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

                daemonUid = decoder.readString();
                priority = DaemonParameters.Priority.values()[decoder.readSmallInt()];
                int argCount = decoder.readSmallInt();
                startupOpts = new ArrayList<String>(argCount);
                for (int i = 0; i < argCount; i++) {
                    startupOpts.add(decoder.readString());
                }
                int additionalClassPathLength = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

                    }
                });
            }
        }
    
        private void generateInvocationWhenArgsMatched(CallInterceptionRequest request, int argCount) {
            result.beginControlFlow("if (invocation.getArgsCount() == $L)", argCount);
            CodeBlock argsCode = prepareInvocationArgs(request);
            emitInvocationCodeWithReturn(request, argsCode);
            result.endControlFlow();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

               << func_name;
      }
    
      FunctionType func_ty = func.getFunctionType();
      int func_arg_count = func_ty.getNumInputs();
      int arg_count = getArgs().size();
    
      if (arg_count != func_arg_count) {
        return emitError() << "argument count mismatch: 'args' has " << arg_count
                           << " argument(s), but '" << func_name << "' expects "
                           << func_arg_count;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

               << func;
      }
    
      FunctionType function_ty = function.getFunctionType();
      int func_arg_count = function_ty.getNumInputs();
      int arg_count = op.getArgs().size();
    
      if (arg_count != func_arg_count) {
        return op.emitError() << "argument count mismatch: 'args' has " << arg_count
                              << " arguments, but '" << func << "' expects "
                              << func_arg_count;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top