Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 866 for OUT (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/link/link_test.go

    		if k == -1 {
    			t.Fatalf("no newline after host link, output:\n%s", out)
    		}
    		out = out[:k]
    
    		// filter out output file name, which is passed by the go
    		// command and is nondeterministic.
    		fs := bytes.Fields(out)
    		for i, f := range fs {
    			if bytes.Equal(f, []byte(`"-o"`)) && i+1 < len(fs) {
    				fs[i+1] = []byte("a.out")
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/testing/testing_test.go

    	cmd.Env = append(cmd.Env, "GO_WANT_RACE_BEFORE_TESTS=1")
    	out, _ := cmd.CombinedOutput()
    	t.Logf("%s", out)
    
    	c := bytes.Count(out, []byte("race detected outside of test execution"))
    
    	want := 0
    	if race.Enabled {
    		want = 1
    	}
    	if c != want {
    		t.Errorf("got %d race reports; want %d", c, want)
    	}
    }
    
    func TestBenchmarkRace(t *testing.T) {
    	out := runTest(t, "BenchmarkRacy")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    printVariant(out, dependency, variant, true);
                }
                if (task.getShowingAllVariants().get()) {
                    out.style(Header);
                    out.println();
                    out.println();
                    out.text("---------------------").println();
                    out.text("Unselected Variant(s)").println();
                    out.text("---------------------");
                    out.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    			out.Write32(s.flag)
    		} else {
    			out.Write32(LC_SEGMENT)
    			out.Write32(56 + 68*s.nsect)
    			out.WriteStringN(s.name, 16)
    			out.Write32(uint32(s.vaddr))
    			out.Write32(uint32(s.vsize))
    			out.Write32(uint32(s.fileoffset))
    			out.Write32(uint32(s.filesize))
    			out.Write32(s.prot1)
    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    			out.Write32(s.flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/builder_test.go

    	}
    	if forTCP {
    		out := &listener.Filter{}
    		if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    			t.Fatalf("failed to parse YAML: %v", err)
    		}
    		return out
    	}
    	out := &hcm.HttpFilter{}
    	if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    		t.Fatalf("failed to parse YAML: %v", err)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top