Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,840 for Primer (0.19 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultsProvider.java

        /**
         * Writes the output of the given test to the given writer. This method must be called only after {@link #visitClasses(org.gradle.api.Action)}.
         *
         * Write all output for the given test case name of the test class.
         */
        void writeTestOutput(long classId, long testId, TestOutputEvent.Destination destination, Writer writer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/internal/bio/buf.go

    	f *os.File
    	*bufio.Reader
    }
    
    // Writer implements a seekable buffered io.Writer.
    type Writer struct {
    	f *os.File
    	*bufio.Writer
    }
    
    // Create creates the file named name and returns a Writer
    // for that file.
    func Create(name string) (*Writer, error) {
    	f, err := os.Create(name)
    	if err != nil {
    		return nil, err
    	}
    	return &Writer{f: f, Writer: bufio.NewWriter(f)}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 17:15:15 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  3. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                    Required.
                  enum:
                    - Delete
                    - Retain
                  type: string
                driver:
                  description: driver is the name of the storage driver that handles this
                    VolumeSnapshotClass. Required.
                  type: string
                kind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingException.java

            PrintWriter writer = new PrintWriter(buffer);
    
            writer.print(problems.size());
            writer.print((problems.size() == 1) ? " problem was " : " problems were ");
            writer.print("encountered while building the effective settings");
            writer.println();
    
            for (SettingsProblem problem : problems) {
                writer.print("[");
                writer.print(problem.getSeverity());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

            doWrite(classId, 0, true, destination, writer)
        }
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, false, destination, writer)
        }
    
        void writeTestOutput(long classId, long testId, TestOutputEvent.Destination destination, Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue60933.go

    	g(writer, file /* ERROR "type *os.File of file does not match inferred type interface{Write(p []byte) (n int, err error)} for T" */)
    }
    
    // Different named interface types do not match.
    func _() {
    	g(io.ReadWriter(nil), io.ReadWriter(nil))
    	g(io.ReadWriter(nil), io /* ERROR "does not match" */ .Writer(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            given:
            def writer = new StringWriter()
            def input = "<things><thing/></things>"
            def generator = new Action<Writer>() {
                void execute(Writer t) {
                    t.write(input)
                }
            }
    
            when:
            transformer.transform(writer, generator)
    
            then:
            looksLike(input, writer.toString())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleXmlWriter.java

         */
        public SimpleXmlWriter(Writer writer, String indent, String encoding) throws IOException {
            super(writer, indent);
            writeXmlDeclaration(encoding);
        }
    
        private void writeXmlDeclaration(String encoding) throws IOException {
            writeRaw("<?xml version=\"1.0\" encoding=\"");
            writeRaw(encoding);
            writeRaw("\"?>");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/config/aggregate/config.go

    	if cr.writer == nil {
    		return errorUnsupported
    	}
    	return cr.writer.Delete(typ, name, namespace, resourceVersion)
    }
    
    func (cr *store) Create(c config.Config) (string, error) {
    	if cr.writer == nil {
    		return "", errorUnsupported
    	}
    	return cr.writer.Create(c)
    }
    
    func (cr *store) Update(c config.Config) (string, error) {
    	if cr.writer == nil {
    		return "", errorUnsupported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/common/dependency-reports/src/main/java/com/example/ListResolvedArtifacts.java

                    writer.print("FILE ");
                    writer.println(file.getAsFile().getName());
                    writer.print("  id: ");
                    writer.println(id.getDisplayName());
                    writer.print("  variant: ");
                    writer.println(variant.getDisplayName());
                    writer.print("  size: ");
                    writer.println(file.getAsFile().length());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top