Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,444 for OUT (0.05 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                val t5: Copy = tasks.getByName("bar", Copy::class) {
                    description += "B"
                    destinationDir = file("out")
                }
                val t6: Copy = tasks.getByName<Copy>("bar") {
                    description += "C"
                    destinationDir = file("out")
                }
    
                val t6: Task = tasks.create("bazar")
                val t7: Copy = tasks.create("cathedral", Copy::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

            @Override
            public void write(JsonWriter out, @Nullable DefaultPluginIdLocation value) throws IOException {
                if (value == null) {
                    out.nullValue();
                    return;
                }
    
                out.beginArray();
                out.name("type").value("pluginId");
                out.name("pluginId").value(value.getPluginId());
                out.endObject();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                    static { System.out.println("static out"); System.err.println("static err"); }
    
                    public FooTest() {
                        System.out.println("constructor out"); System.err.println("constructor err");
                    }
    
                    @BeforeClass public static void beforeClass() {
                        System.out.println("beforeClass out"); System.err.println("beforeClass err");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/net/ip_test.go

    func TestParseIP(t *testing.T) {
    	for _, tt := range parseIPTests {
    		if out := ParseIP(tt.in); !reflect.DeepEqual(out, tt.out) {
    			t.Errorf("ParseIP(%q) = %v, want %v", tt.in, out, tt.out)
    		}
    		if tt.in == "" {
    			// Tested in TestMarshalEmptyIP below.
    			continue
    		}
    		var out IP
    		if err := out.UnmarshalText([]byte(tt.in)); !reflect.DeepEqual(out, tt.out) || (tt.out == nil) != (err != nil) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o0 |= uint32(p.RestArgs[2].Addr.Offset&0xf) << 12 // PMSK
    	out[1] = o1
    	out[0] = o0
    }
    
    // pnop
    func type_pnop(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenPfxOpcodes[p.As-AXXSPLTIW]
    	o1 := GenOpcodes[p.As-AXXSETACCZ]
    	out[1] = o1
    	out[0] = o0
    }
    
    // pstxssp VRS,D(RA),R
    func type_pstxssp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenPfxOpcodes[p.As-AXXSPLTIW]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

        }
    
        private static void showUsage(PrintStream out, CommandLineParser parser) {
            out.println();
            out.print("USAGE: ");
            clientMetaData().describeCommand(out, "[option...]", "[task...]");
            out.println();
            out.println();
            parser.printUsage(out);
            out.println();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    	out = in
    	for i, t := range in {
    		if u := subst.typ(t); u != t {
    			if !copied {
    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]Type, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = u
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

                        case '\n':
                            out.write('\\');
                            out.write('n');
                            break;
                        case '\t':
                            out.write('\\');
                            out.write('t');
                            break;
                        case '\f':
                            out.write('\\');
                            out.write('f');
                            break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

            child2.classpath[0].javadoc.name == 'child1-1.0-javadoc.jar'
            taskExecuted(out, ":eclipseClosedDependencies")
            taskExecuted(out, ":child1:javadocJar")
            taskExecuted(out, ":child1:sourceJar")
    
        }
    
    
        private static def taskExecuted(ByteArrayOutputStream out, String taskPath) {
            out.toString().find("(?m)> Task ${Pattern.quote(taskPath)}\$") != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/instrumented_services.go

    	defer recordOperation(operation, time.Now())
    
    	out, err := in.service.Version(ctx, apiVersion)
    	recordError(operation, err)
    	return out, err
    }
    
    func (in instrumentedRuntimeService) Status(ctx context.Context, verbose bool) (*runtimeapi.StatusResponse, error) {
    	const operation = "status"
    	defer recordOperation(operation, time.Now())
    
    	out, err := in.service.Status(ctx, verbose)
    	recordError(operation, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top