Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for gwrite (0.21 sec)

  1. src/runtime/asm_amd64.s

    	MOVQ	R12, 96(SP)
    	MOVQ	R13, 104(SP)
    retry:
    	// TODO: Consider passing g.m.p in as an argument so they can be shared
    	// across a sequence of write barriers.
    	MOVQ	g_m(R14), R13
    	MOVQ	m_p(R13), R13
    	// Get current buffer write position.
    	MOVQ	(p_wbBuf+wbBuf_next)(R13), R12	// original next position
    	ADDQ	R11, R12			// new next position
    	// Is the buffer full?
    	CMPQ	R12, (p_wbBuf+wbBuf_end)(R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    				// inner handler writes header and then let the request time out.
    				w.WriteHeader(http.StatusBadRequest)
    				<-callerRoundTripDoneCh
    
    				// we expect the timeout handler to have timed out this request by now and any attempt
    				// to write to the response should return a http.ErrHandlerTimeout error.
    				_, innerHandlerWriteErr := w.Write([]byte("foo"))
    				reqHandlerErrCh <- innerHandlerWriteErr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    				}
    
    				if test.stdout {
    					_, err := out.Write([]byte(expectedStdout))
    					assert.NoError(t, err, "writing to stdout")
    					out.Close()
    					<-clientStdoutReadDone
    				}
    
    				if !test.tty && test.stderr {
    					_, err := stderr.Write([]byte(expectedStderr))
    					assert.NoError(t, err, "writing to stderr")
    					stderr.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      & sc.exe stop wuauserv
      Write-VerboseServiceInfoToConsole -Service 'wuauserv' -Delay 1
    
      # Use TLS 1.2: needed for Invoke-WebRequest downloads from github.com.
      [Net.ServicePointManager]::SecurityProtocol = `
          [Net.SecurityProtocolType]::Tls12
    
      Configure-WindowsDefender
    }
    
    # Creates directories where other functions in this module will read and write
    # data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

                  override fun contentLength(): Long = postBytes.size.toLong()
    
                  override fun writeTo(sink: BufferedSink) {
                    sink.write(postBytes) // push bytes into the stream's buffer
                    sink.flush() // Http2Connection.writeData subject to write window
                    sink.close() // Http2Connection.writeData empty frame
                  }
                },
            ),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    // NOTE: Caller MUST hold r.customStorageLock to write r.customStorage thread-safely.
    func (r *crdHandler) removeStorage_locked(uid types.UID) {
    	storageMap := r.customStorage.Load().(crdStorageMap)
    	if oldInfo, ok := storageMap[uid]; ok {
    		// Copy because we cannot write to storageMap without a race
    		// as it is used without locking elsewhere.
    		storageMap2 := storageMap.clone()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    			t.Error("invalid DNS query:", err)
    			return
    		}
    
    		s.Write([]byte("garbage DNS response packet"))
    
    		msg.Header.Response = true
    		msg.Header.ID++ // make invalid ID
    
    		if b, err = msg.Pack(); err != nil {
    			t.Error("failed to pack DNS response:", err)
    			return
    		}
    		s.Write(b)
    
    		msg.Header.ID-- // restore original ID
    		msg.Answers = []dnsmessage.Resource{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Errorf("guaranteed update should have short-circuited write, got %#v", out)
    	}
    
    	revertTransformer = store.UpdatePrefixTransformer(
    		func(transformer *PrefixTransformer) value.Transformer {
    			transformer.stale = true
    			return transformer
    		})
    	defer revertTransformer()
    
    	// this update should write to etcd because the transformer reported stale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top