Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 513 for deliver (1.62 sec)

  1. tests/integration/security/sds_ingress/ingress_test.go

    // verify that TLS connection could establish to deliver HTTPS request.
    // (2) Rotates key/cert by deleting the secret generated in (1) and
    // replacing it a new secret with a different server key/cert.
    // (3) verify that client using older CA cert gets a 404 response
    // (4) verify that client using the newer CA cert is able to establish TLS connection
    // to deliver the HTTPS request.
    func TestSingleTlsGateway_SecretRotation(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. src/runtime/os_aix.go

    //go:nosplit
    func (c *sigctxt) fixsigcode(sig uint32) {
    	switch sig {
    	case _SIGPIPE:
    		// For SIGPIPE, c.sigcode() isn't set to _SI_USER as on Linux.
    		// Therefore, raisebadsignal won't raise SIGPIPE again if
    		// it was deliver in a non-Go thread.
    		c.set_sigcode(_SI_USER)
    	}
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    	(*mask)[(i-1)/64] |= 1 << ((uint32(i) - 1) & 63)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/image/jpeg/reader_test.go

    	f, err := os.Open(filename)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	return Decode(f)
    }
    
    type eofReader struct {
    	data     []byte // deliver from Read without EOF
    	dataEOF  []byte // then deliver from Read with EOF on last chunk
    	lenAtEOF int
    }
    
    func (r *eofReader) Read(b []byte) (n int, err error) {
    	if len(r.data) > 0 {
    		n = copy(b, r.data)
    		r.data = r.data[n:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    	// PodConfigNotificationSnapshot delivers the full configuration as a SET whenever
    	// any change occurs.
    	PodConfigNotificationSnapshot
    	// PodConfigNotificationSnapshotAndUpdates delivers an UPDATE and DELETE message whenever pods are
    	// changed, and a SET message if there are any additions or removals.
    	PodConfigNotificationSnapshotAndUpdates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	case watch.Deleted:
    		// Don't wrap Object for delete events - these are not to deliver any
    		// events. Only wrap PrevObject.
    		if object, err := newCachingObject(event.PrevObject); err == nil {
    			// Update resource version of the object.
    			// event.PrevObject is used to deliver DELETE watch events and
    			// for them, we set resourceVersion to <current> instead of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	var oldest uint64
    	switch {
    	case w.listResourceVersion > 0 && !w.removedEventSinceRelist:
    		// If no event was removed from the buffer since last relist, the oldest watch
    		// event we can deliver is one greater than the resource version of the list.
    		oldest = w.listResourceVersion + 1
    	case size > 0:
    		// If the previous condition is not satisfied: either some event was already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. internal/grid/muxclient.go

    	// Spawn simple disconnect
    	if requests == nil {
    		go m.handleOneWayStream(responseCh, responses)
    		return &Stream{responses: responseCh, Requests: nil, ctx: m.ctx, cancel: m.cancelFn, muxID: m.MuxID}, nil
    	}
    
    	// Deliver responses and send unblocks back to the server.
    	go m.handleTwowayResponses(responseCh, responses)
    	go m.handleTwowayRequests(responses, requests)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    	n := (1 + re.numSubexp) * 2
    	for len(a) < n {
    		a = append(a, -1)
    	}
    	return a
    }
    
    // allMatches calls deliver at most n times
    // with the location of successive matches in the input text.
    // The input text is b if non-nil, otherwise s.
    func (re *Regexp) allMatches(s string, b []byte, n int, deliver func([]int)) {
    	var end int
    	if b == nil {
    		end = len(s)
    	} else {
    		end = len(b)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_traffic_policy.go

    		// where multiple endpoints in a cluster are terminated. In these scenarios the circuit breaker can kick
    		// in before Pilot is able to deliver an updated endpoint list to Envoy, leading to client-facing 503s.
    		MaxRetries:         &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxRequests:        &wrapperspb.UInt32Value{Value: math.MaxUint32},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	childTID   uint64 // Where to store child TID, in child's memory (pid_t *)
    	parentTID  uint64 // Where to store child TID, in parent's memory (pid_t *)
    	exitSignal uint64 // Signal to deliver to parent on child termination
    	stack      uint64 // Pointer to lowest byte of stack
    	stackSize  uint64 // Size of stack
    	tls        uint64 // Location of new TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top