Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,976 for argps (0.05 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/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/OutputSpecification.groovy

            Long id = args.containsKey("id") ? args.id : ++counter
            String category = args.containsKey("category") ? args.category : CATEGORY
            return new ProgressStartEvent(new OperationIdentifier(id), parent, tenAm, category, args.description, args.loggingHeader, args.status, 0, buildOperationStart, buildOperationId, buildOperationCategory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. pkg/util/strcase/camelcase_test.go

    		})
    	}
    }
    
    func TestCamelCaseWithSeparator(t *testing.T) {
    	type args struct {
    		n   string
    		sep string
    	}
    	tests := []struct {
    		name string
    		args args
    		want string
    	}{
    		{
    			name: "foo_bar",
    			args: args{
    				n:   "foo_bar",
    				sep: "_",
    			},
    			want: "FooBar",
    		},
    		{
    			name: "foo-bar",
    			args: args{
    				n:   "foo-bar",
    				sep: "-",
    			},
    			want: "FooBar",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_server_journal_linux.go

    	args := []string{
    		"--utc",
    		"--no-pager",
    		"--output=short-precise",
    	}
    	if n.SinceTime != nil {
    		args = append(args, fmt.Sprintf("--since=%s", n.SinceTime.Format(dateLayout)))
    	}
    	if n.UntilTime != nil {
    		args = append(args, fmt.Sprintf("--until=%s", n.UntilTime.Format(dateLayout)))
    	}
    	if n.TailLines != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 11 01:09:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/trace/raw/reader.go

    	}
    	ev := event.Type(evb)
    	spec := r.specs[ev]
    	args, err := r.readArgs(len(spec.Args))
    	if err != nil {
    		return Event{}, err
    	}
    	if spec.IsStack {
    		len := int(args[1])
    		for i := 0; i < len; i++ {
    			// Each stack frame has four args: pc, func ID, file ID, line number.
    			frame, err := r.readArgs(4)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritedec.go

    		}
    		t := x.Type
    		mem := x.Args[1]
    		ptr := x.Args[0]
    		if !(t.IsInterface()) {
    			break
    		}
    		b = x.Block
    		v0 := b.NewValue0(v.Pos, OpLoad, typ.Uintptr)
    		v.copyOf(v0)
    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	return false
    }
    func rewriteValuedec_OpLoad(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformerTest.groovy

            when:
            def args = transformer.transform(spec)
    
            then:
            assertHasArguments(args, "-I", includes)
            assertHasArguments(args, "-isystem", systemIncludes)
    
            and:
            args.indexOf(includes.last().absoluteFile.toString()) < args.indexOf(systemIncludes.first().absoluteFile.toString())
        }
    
        boolean assertHasArguments(List<String> args, String option, List<File> files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/reflect/type_test.go

    	})
    }
    
    func TestIsRegularMemory(t *testing.T) {
    	type args struct {
    		t reflect.Type
    	}
    	type S struct {
    		int
    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{"struct{i int}", args{reflect.TypeOf(struct{ i int }{})}, true},
    		{"struct{}", args{reflect.TypeOf(struct{}{})}, true},
    		{"struct{i int; s S}", args{reflect.TypeOf(struct {
    			i int
    			s S
    		}{})}, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top