Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for writeNL (0.32 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

                this.model = model;
                this.xmlTransformer = xmlTransformer;
            }
    
            public void writeTo(File file) {
                xmlTransformer.transform(file, POM_FILE_ENCODING, writer -> {
                    try {
                        new MavenXpp3Writer().write(writer, model);
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                    }
                }
                if (cancelled) {
                    return new ResponseProducer() {
                        @Override
                        public void writeTo(int requestId, HttpExchange exchange) {
                            try {
                                exchange.sendResponseHeaders(200, -1);
                            } catch (IOException e) {
                                // Ignore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Stats.java

       * versions.
       */
      public byte[] toByteArray() {
        ByteBuffer buff = ByteBuffer.allocate(BYTES).order(ByteOrder.LITTLE_ENDIAN);
        writeTo(buff);
        return buff.array();
      }
    
      /**
       * Writes to the given {@link ByteBuffer} a byte representation of this instance.
       *
       * <p><b>Note:</b> No guarantees are made regarding stability of the representation between
       * versions.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    		w.Header().Set("X-Content-Type-Options", "nosniff")
    		if _, found := r.URL.Query()["verbose"]; !found {
    			fmt.Fprint(w, "ok")
    			return
    		}
    
    		individualCheckOutput.WriteTo(w)
    		fmt.Fprintf(w, "%s check passed\n", name)
    	}
    }
    
    // adaptCheckToHandler returns an http.HandlerFunc that serves the provided checks.
    func adaptCheckToHandler(c func(r *http.Request) error) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            descriptor
        }
    
        private def ivyFile(IvyModuleDescriptorSpecInternal descriptor) {
            def ivyXmlFile = testDirectoryProvider.file("ivy")
            IvyDescriptorFileGenerator.generateSpec(descriptor).writeTo(ivyXmlFile)
            return ivyXmlFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. internal/grid/connection.go

    		c.blockMessages.Store(&block)
    		c.connMu.Unlock()
    	}
    }
    
    // wsWriter writes websocket messages.
    type wsWriter struct {
    	tmp [ws.MaxHeaderSize]byte
    }
    
    // writeMessage writes a message to w without allocations.
    func (ww *wsWriter) writeMessage(w io.Writer, s ws.State, op ws.OpCode, p []byte) error {
    	const fin = true
    	var frame ws.Frame
    	if s.ClientSide() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/Stats.java

       * versions.
       */
      public byte[] toByteArray() {
        ByteBuffer buff = ByteBuffer.allocate(BYTES).order(ByteOrder.LITTLE_ENDIAN);
        writeTo(buff);
        return buff.array();
      }
    
      /**
       * Writes to the given {@link ByteBuffer} a byte representation of this instance.
       *
       * <p><b>Note:</b> No guarantees are made regarding stability of the representation between
       * versions.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/common.psm1

    # minimum required steps to re-join this node to the cluster.
    $REDO_STEPS = $false
    Export-ModuleMember -Variable REDO_STEPS
    
    # Writes $Message to the console. Terminates the script if $Fatal is set.
    function Log-Output {
      param (
        [parameter(Mandatory=$true)] [string]$Message,
        [switch]$Fatal
      )
      Write-Host "${Message}"
      if (${Fatal}) {
        Exit 1
      }
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  9. src/io/multi_test.go

    	var w Writer = MultiWriter(writerFunc(func(p []byte) (int, error) {
    		n := runtime.Callers(1, pc)
    		writeDepth += callDepth(pc[:n])
    		return 0, nil
    	}))
    
    	mw := w
    	// chain a bunch of multiWriters
    	for i := 0; i < 100; i++ {
    		mw = MultiWriter(w)
    	}
    
    	mw = MultiWriter(w, mw, w, mw)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    // break). Writers must write well formed YAML documents (include a final line break).
    func (w yamlFrameWriter) Write(data []byte) (n int, err error) {
    	if _, err := w.w.Write([]byte("---\n")); err != nil {
    		return 0, err
    	}
    	return w.w.Write(data)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
Back to top