Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for sendErr (0.17 sec)

  1. .github/workflows/trusted-partners.yml

        permissions:
          # Needed to attach tags into the PR
          issues: write
          contents: write
          pull-requests: write
        if: |
          github.event.pull_request.draft == false &&
          github.event.sender.type == 'User'
        steps:
          - name: Checkout repo
            uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          - name: Trusted-Partners-PR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/queue/delay.go

    	// Use blocking channel if GOMAXPROCS=1.
    	// This switches context from sender to receiver immediately,
    	// which results in higher performance.
    	var n int
    	if n = runtime.GOMAXPROCS(0); n == 1 {
    		return 0
    	}
    
    	// Make channel non-blocking and set up its capacity with GOMAXPROCS if GOMAXPROCS>1,
    	// otherwise the sender might be dragged down if the receiver is CPU-bound.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcConstants.java

        public static final int DCERPC_FIRST_FRAG = 0x01; /* First fragment */
        public static final int DCERPC_LAST_FRAG = 0x02; /* Last fragment */
        public static final int DCERPC_PENDING_CANCEL = 0x04; /* Cancel was pending at sender */
        public static final int DCERPC_RESERVED_1 = 0x08;
        public static final int DCERPC_CONC_MPX = 0x10; /* supports concurrent multiplexing */
        public static final int DCERPC_DID_NOT_EXECUTE = 0x20;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/chan_test.go

    	// The way we try to induce this failure is to set up two
    	// goroutines: a sender and a receiver that communicate across
    	// a channel. We try to set up a situation where the sender
    	// grows its stack temporarily then *fully* blocks on a channel
    	// often. Meanwhile a GC is triggered so that we try to get a
    	// mark worker to shrink the sender's stack and race with the
    	// sender parking.
    	//
    	// Unfortunately the race window here is so small that we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output recv_a = ops::_Recv(root.WithOpName("recv_a"), DT_FLOAT, "tensor_a",
                                 "sender", 0, "receiver");
      Output recv_b = ops::_Recv(root.WithOpName("recv_b"), DT_FLOAT, "tensor_b",
                                 "sender", 0, "receiver");
      Output add = ops::Add(root.WithOpName("add"), recv_a, recv_b);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/runtime/sigqueue.go

    		for i := uint32(0); i < _NSIG; i++ {
    			if sig.recv[i/32]&(1<<(i&31)) != 0 {
    				sig.recv[i/32] &^= 1 << (i & 31)
    				return i
    			}
    		}
    
    		// Wait for updates to be available from signal sender.
    	Receive:
    		for {
    			switch sig.state.Load() {
    			default:
    				throw("signal_recv: inconsistent state")
    			case sigIdle:
    				if sig.state.CompareAndSwap(sigIdle, sigReceiving) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/runtime/select.go

    // This must match ../reflect/value.go:/runtimeSelect
    type runtimeSelect struct {
    	dir selectDir
    	typ unsafe.Pointer // channel type (not used here)
    	ch  *hchan         // channel
    	val unsafe.Pointer // ptr to data (SendDir) or ptr to receive buffer (RecvDir)
    }
    
    // These values must match ../reflect/value.go:/SelectDir.
    type selectDir int
    
    const (
    	_             selectDir = iota
    	selectSend              // case Chan <- Send
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. internal/s3select/sql/evaluate.go

    	stVal, stErr := e.Start.evalNode(r, tableAlias)
    	if stErr != nil {
    		return nil, stErr
    	}
    
    	endVal, endErr := e.End.evalNode(r, tableAlias)
    	if endErr != nil {
    		return nil, endErr
    	}
    
    	part1, err1 := stVal.compareOp(opLte, arg)
    	if err1 != nil {
    		return nil, err1
    	}
    
    	part2, err2 := arg.compareOp(opLte, endVal)
    	if err2 != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. pilot/pkg/features/xds.go

    	).Get()
    
    	// UseRemoteAddress sets useRemoteAddress to true for sidecar outbound listeners so that it picks up the localhost
    	// address of the sender, which is an internal address, so that trusted headers are not sanitized.
    	UseRemoteAddress = env.Register(
    		"PILOT_SIDECAR_USE_REMOTE_ADDRESS",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      document.addEventListener('mouseup', (e) => {
        if (activeMenu == e.target.closest('.submenu')) {
          cancelActiveMenu();
        }
      }, { passive: true, capture: true });
    }
    
    function sendURL(method, url, done) {
      fetch(url.toString(), {method: method})
          .then((response) => { done(response.ok); })
          .catch((error) => { done(false); });
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top