Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 975 for writeMsg (0.15 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

            }
    
            /**
             * Writes a JAR entry.
             * @param path the path of the entry
             * @param bytes the body of the entry
             */
            void entry(String path, byte[] bytes) {
                checkManifestWritten()
                jarOut.putNextEntry(newEntryWithFixedTime(path))
                jarOut.write(bytes)
            }
    
            /**
             * Writes a JAR entry.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/runtime/rwmutex.go

    	rLock      mutex    // protects readers, readerPass, writer
    	readers    muintptr // list of pending readers
    	readerPass uint32   // number of pending readers to skip readers list
    
    	wLock  mutex    // serializes writers
    	writer muintptr // pending writer waiting for completing readers
    
    	readerCount atomic.Int32 // number of pending readers
    	readerWait  atomic.Int32 // number of departing readers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    // Identitier of two different objects should be equal if and only if for every
    // input the output they produce is exactly the same.
    type Identifier string
    
    // Encoder writes objects to a serialized form
    type Encoder interface {
    	// Encode writes an object to a stream. Implementations may return errors if the versions are
    	// incompatible, or if no conversion is defined.
    	Encode(obj Object, w io.Writer) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

        }
    
        public void showDetail(boolean detail) {
            this.detail = detail;
        }
    
        public void showTypes(boolean showTypes) {
            this.showTypes = showTypes;
        }
    
        /**
         * Writes the default task names for the current project.
         *
         * @param defaultTaskNames The default task names (must not be null)
         */
        public void addDefaultTasks(List<String> defaultTaskNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/StreamingStyledTextOutput.java

    package org.gradle.internal.logging.text;
    
    import org.gradle.api.logging.StandardOutputListener;
    
    import java.io.Closeable;
    import java.io.IOException;
    
    /**
     * A {@link StyledTextOutput} implementation which writes text to some char stream. Ignores any
     * styling information.
     */
    public class StreamingStyledTextOutput extends AbstractStyledTextOutput implements Closeable {
        private final StandardOutputListener listener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/mime/quotedprintable/writer.go

    	Binary bool
    
    	w    io.Writer
    	i    int
    	line [78]byte
    	cr   bool
    }
    
    // NewWriter returns a new [Writer] that writes to w.
    func NewWriter(w io.Writer) *Writer {
    	return &Writer{w: w}
    }
    
    // Write encodes p using quoted-printable encoding and writes it to the
    // underlying [io.Writer]. It limits line length to 76 characters. The encoded
    // bytes are not necessarily flushed until the [Writer] is closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/validators.h

      return !attr || attr.getValue() == "NDHWC";
    }
    
    // Returns true if the given `op`
    //   * has an attribute with the given `name`,
    //   * and the attribute is an integer list of the form [1, X, Y, 1],
    // and writes X, Y as 32-bit integer attribute to `x`, `y`.
    bool TFIntListIs1XY1(Operation *op, StringRef name, IntegerAttr *x,
                         IntegerAttr *y);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // Converts from read/write state that relates ops with the same parallel id
      // to a set of last accesses for use with other parallel ids. Reads/writes
      // between parallel ids are conservatively approximated as writes.
      absl::flat_hash_set<Operation*> GetLastWrites(ResourceId resource_id);
    
      // Sets the read/write state for ops within the same parallel id.
      void SetLastWrites(ResourceId resource_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptorTest.groovy

        def descriptor = new DefaultDeploymentDescriptor({ it } as FileResolver, objectFactory)
        @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def "writes default descriptor"() {
            def file = tmpDir.file("out.xml")
    
            when:
            descriptor.writeTo(file)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/context.go

    	}
    	return true
    }
    
    // writeString writes the given string to dst.
    func (c *context) writeString(s string) bool {
    	if len(c.dst)-c.pDst < len(s) {
    		c.err = transform.ErrShortDst
    		return false
    	}
    	// This loop is faster than using copy.
    	for i := 0; i < len(s); i++ {
    		c.dst[c.pDst] = s[i]
    		c.pDst++
    	}
    	return true
    }
    
    // copy writes the current rune to dst.
    func (c *context) copy() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top