Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 880 for bargs (0.13 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultModelBuilderTest.groovy

            builder.get(handler)
    
            then:
            1 * asyncConnection.run(!null, !null) >> {args ->
                ConsumerAction<GradleProject> action = args[0]
                action.run(connection)
                adaptedHandler = args[1]
            }
            1 * connection.run(GradleProject, _) >> {args ->
                ConsumerOperationParameters params = args[1]
                assert params.standardOutput == null
                assert params.standardError == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            1 * repo1.content(_) >> { args ->
                args[0].execute(repo1Content)
            }
            1 * repo1Content.includeGroup("foo")
            1 * repo2.content(_) >> { args ->
                args[0].execute(repo2Content)
            }
            1 * repo2Content.excludeGroup("foo")
            1 * repo3.content(_) >> { args ->
                args[0].execute(repo3Content)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

                    args.add("-shared");
                    maybeSetInstallName((SharedLibraryLinkerSpec) spec, args);
                }
                args.add("-o");
                args.add(spec.getOutputFile().getAbsolutePath());
                for (File file : spec.getObjectFiles()) {
                    args.add(file.getAbsolutePath());
                }
                for (File file : spec.getLibraries()) {
                    args.add(file.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/go/types/typeterm_test.go

    		"string int string int",
    		"~string int ~string int",
    		"myInt int myInt int",
    		"~string ~int ~string ~int",
    		"myInt ~int ~int ∅",
    	} {
    		args := split(test, 4)
    		x := testTerm(args[0])
    		y := testTerm(args[1])
    		want1 := testTerm(args[2])
    		want2 := testTerm(args[3])
    		if got1, got2 := x.union(y); !got1.equal(want1) || !got2.equal(want2) {
    			t.Errorf("%v.union(%v) = %v, %v; want %v, %v", x, y, got1, got2, want1, want2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            given:
            def called = []
            Action<?> a = Mock() {
                execute(_) >> { args -> args[0] << 'a' }
            }
            Action<?> b = Mock() {
                execute(_) >> { args -> args[0] << 'b' }
            }
            Action<?> c = Mock() {
                execute(_) >> { args -> args[0] << 'c' }
            }
    
            when:
            def set = Actions.set(b, a)
            set = Actions.set(set, c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/add.mlir

    // TUPLE-ARGS:         [[ADD:%.*]] = f32[] add(f32[] [[ARG0]], f32[] [[ARG1]])
    // TUPLE-ARGS:         ROOT %tuple.{{[0-9]+}} = (f32[]) tuple(f32[] [[ADD]])
    // TUPLE-ARGS:       }
    
    // TUPLE-ARGS:       // InputMapping {0, 1}
    // TUPLE-ARGS-NEXT:  // XlaInputShape (f32[], f32[])
    // TUPLE-ARGS-NEXT:  // XlaOutputShape (f32[])
    // TUPLE-ARGS-NEXT:  // XlaOutputDescription type=float shape=()
    
    
    // NO_RET_TUPLE-LABEL: HloModule main{{[.0-9]*}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 23 18:56:13 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            final List<String> args = new ArrayList<String>();
            if (homeDir != null) {
                args.add("--homedir");
                args.add(homeDir.getAbsolutePath());
            }
            if (optionsFile != null) {
                args.add("--options");
                args.add(optionsFile.getAbsolutePath());
            }
            if (keyName != null) {
                args.add("--local-user");
                args.add(keyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecSpec.java

            argumentsSpec.commandLine(args);
        }
    
        @Override
        public ExecSpec args(Object... args) {
            argumentsSpec.args(args);
            return this;
        }
    
        @Override
        public ExecSpec args(Iterable<?> args) {
            argumentsSpec.args(args);
            return this;
        }
    
        @Override
        public ExecSpec setArgs(List<String> arguments) {
            argumentsSpec.setArgs(arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/TaskDefinitionScriptTransformer.java

                ArgumentListExpression args = (ArgumentListExpression) call.getArguments();
                VariableExpression arg = (VariableExpression) args.getExpression(index);
                if (!isDynamicVar(arg)) {
                    return;
                }
    
                // Matches: task args?, <identifier>, args? or task(args?, <identifier>, args?)
                // Map to: task(args?, '<identifier>', args?)
                String taskName = arg.getText();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 19 22:17:48 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/go/main.go

    	telemetry.Inc("go/invocations")
    	telemetry.CountFlags("go/flag:", *flag.CommandLine)
    
    	args := flag.Args()
    	if len(args) < 1 {
    		base.Usage()
    	}
    
    	cfg.CmdName = args[0] // for error messages
    	if args[0] == "help" {
    		telemetry.Inc("go/subcommand:" + strings.Join(append([]string{"help"}, args[1:]...), "-"))
    		help.Help(os.Stdout, args[1:])
    		return
    	}
    
    	if cfg.GOROOT == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top