Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for gwrite (0.22 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=42
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unix.go"
    String id=43
    	data="internal/poll.(*FD).Write"
    String id=44
    	data="os.(*File).write"
    String id=45
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file_posix.go"
    String id=46
    	data="os.(*File).Write"
    String id=47
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go"
    String id=48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error) {
    	r0, _, e1 := syscall.Syscall6(procMultiByteToWideChar.Addr(), 6, uintptr(codePage), uintptr(dwFlags), uintptr(unsafe.Pointer(str)), uintptr(nstr), uintptr(unsafe.Pointer(wchar)), uintptr(nwchar))
    	nwrite = int32(r0)
    	if nwrite == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    			fakeResponse.content = []byte(`{"apiVersion": "v1", "kind": "List"}`)
    		}
    		response.Header().Set("Content-Type", "application/json")
    		response.WriteHeader(fakeResponse.statusCode)
    		response.Write(fakeResponse.content)
    	}()
    
    	// This is to allow the fakeActionHandler to simulate a watch being opened
    	if strings.Contains(request.URL.RawQuery, "watch=true") {
    		hijacker, ok := response.(http.Hijacker)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		},
    	})
    	return err
    }
    
    // filterReplicationStatusMetadata filters replication status metadata for COPY
    func filterReplicationStatusMetadata(metadata map[string]string) map[string]string {
    	// Copy on write
    	dst := metadata
    	var copied bool
    	delKey := func(key string) {
    		if _, ok := metadata[key]; !ok {
    			return
    		}
    		if !copied {
    			dst = make(map[string]string, len(metadata))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    //
    // If any step of this workflow errors, the error is returned, and is repeated
    // on the next SyncPod call.
    //
    // This operation writes all events that are dispatched in order to provide
    // the most accurate information possible about an error situation to aid debugging.
    // Callers should not write an event if this operation returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			name:            "Valid with whitespace inside field",
    			fieldPath:       ".white space",
    			pathOfFieldPath: path,
    			schema:          &sts,
    		},
    		{
    			name:            "Valid with whitespace inside field",
    			fieldPath:       "['white space']",
    			pathOfFieldPath: path,
    			schema:          &sts,
    		},
    		{
    			name:            "invalid dot annotation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    \\--- org:bom:1.0
         \\--- compileClasspath
    
    org:leaf -> 1.0
    \\--- compileClasspath
    """
            where:
            conf << ["",
                     // this is just a sanity check. Nobody should ever write this.
                     "{ capabilities { requireCapability('org:bom-derived-platform') } }"]
        }
    
        def "shows published dependency reason"() {
            given:
            mavenRepo.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    		for k, value := range customHeaders {
    			req.Header.Set(k, value)
    		}
    	}
    
    	checksumData := func(b []byte, h hash.Hash) string {
    		h.Reset()
    		_, err := h.Write(b)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return base64.StdEncoding.EncodeToString(h.Sum(nil))
    	}
    	// test cases with inputs and expected result for GetObject.
    	testCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

        builder.socketPolicy(DisconnectAtEnd)
        val headers = response.headers
        val fullBody = Buffer()
        response.body!!.writeTo(fullBody)
        val truncatedBody = Buffer()
        truncatedBody.write(fullBody, numBytesToKeep.toLong())
        builder.body(truncatedBody)
        builder.headers(headers)
        return builder
      }
    
      internal enum class TransferKind {
        CHUNKED {
          override fun setBody(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    fact/repository/metadata/io/xpp3/MetadataXpp3Writer.class package org.apache.maven.artifact.repository.metadata.io.xpp3; public synchronized class MetadataXpp3Writer { private String NAMESPACE; public void MetadataXpp3Writer(); public void write(java.io.Writer, org.apache.maven.artifact.repository.metadata.Metadata) throws java.io.IOException; private void writeMetadata(org.apache.maven.artifact.repository.metadata.Metadata, String, org.codehaus.plexus.util.xml.pull.XmlSerializer) throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
Back to top