Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,978 for seni (0.1 sec)

  1. src/internal/fuzz/fuzz.go

    	startTime time.Time
    
    	// inputC is sent values to fuzz by the coordinator. Any worker may receive
    	// values from this channel. Workers send results to resultC.
    	inputC chan fuzzInput
    
    	// minimizeC is sent values to minimize by the coordinator. Any worker may
    	// receive values from this channel. Workers send results to resultC.
    	minimizeC chan fuzzMinimizeInput
    
    	// resultC is sent results of fuzzing by workers. The coordinator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. pkg/log/uds.go

    	if err != nil {
    		return fmt.Errorf("failed to send logs to uds server %v: %v", u.url, err)
    	}
    	if resp.StatusCode != http.StatusOK {
    		return fmt.Errorf("uds server returns non-ok status %v: %v", u.url, resp.Status)
    	}
    	return nil
    }
    
    // Write implements zapcore.Core. Log messages will be temporarily buffered and sent to
    // UDS server asyncrhonously.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    		delete(c.tree, child)
    	}
    }
    
    // Event represents a registry update event
    type Event int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd Event = iota
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    	EventDelete
    )
    
    func (event Event) String() string {
    	out := "unknown"
    	switch event {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    | `minio_notification_events_errors_total`      | `counter` | Events that were failed to be sent to the targets                                        | `server` |
    | `minio_notification_events_sent_total`        | `counter` | Total number of events sent to the targets                                               | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. src/os/signal/signal.go

    // license that can be found in the LICENSE file.
    
    package signal
    
    import (
    	"context"
    	"os"
    	"sync"
    )
    
    var handlers struct {
    	sync.Mutex
    	// Map a channel to the signals that should be sent to it.
    	m map[chan<- os.Signal]*handler
    	// Map a signal to the number of channels receiving it.
    	ref [numSig]int64
    	// Map channels to signals while the channel is being stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    This includes, for example:
    
    * Email notifications sent after performing an action:
        * As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background.
    * Processing data:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    | `minio_notify_events_errors_total`             | Events that were failed to be sent to the targets (deprecated, please use 'minio_notify_target_failed_events' instead)                      |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    				}
    				processAuditEvent(ctx, sink, ev, omitStages)
    				return
    			}
    
    			// if no StageResponseStarted event was sent b/c neither a status code nor a body was sent, fake it here
    			// But Audit-Id http header will only be sent when http.ResponseWriter.WriteHeader is called.
    			fakedSuccessStatus := &metav1.Status{
    				Code:    http.StatusOK,
    				Status:  metav1.StatusSuccess,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. src/runtime/sigqueue_plan9.go

    	note := &q.data[q.ri]
    	item := string(note.s[:note.n])
    	q.ri++
    	if q.ri == qsize {
    		q.ri = 0
    	}
    	unlock(&q.lock)
    	return item
    }
    
    // Called from sighandler to send a signal back out of the signal handling thread.
    // Reports whether the signal was sent. If not, the caller typically crashes the program.
    func sendNote(s *byte) bool {
    	if !sig.inuse {
    		return false
    	}
    
    	// Add signal to outgoing queue.
    	if !sig.q.push(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
              "in": "query",
              "name": "allowWatchBookmarks",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top