Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 608 for seni (0.1 sec)

  1. pkg/adsc/adsc.go

    	// Set after Dial is called.
    	stream discovery.AggregatedDiscoveryService_StreamAggregatedResourcesClient
    	// xds client used to create a stream
    	client discovery.AggregatedDiscoveryServiceClient
    	conn   *grpc.ClientConn
    
    	// Indicates if the ADSC client is closed
    	closed bool
    
    	// NodeID is the node identity sent to Pilot.
    	nodeID string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        var finished: Boolean = false,
      ) : Sink {
        /**
         * Buffer of outgoing data. This batches writes of small writes into this sink as larges frames
         * written to the outgoing connection. Batching saves the (small) framing overhead.
         */
        private val sendBuffer = Buffer()
    
        /** Trailers to send at the end of the stream. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. internal/event/target/postgresql.go

    		return err
    	}
    	return target.send(eventData)
    }
    
    // IsConnErr - To detect a connection error.
    func IsConnErr(err error) bool {
    	return xnet.IsConnRefusedErr(err) || err.Error() == "sql: database is closed" || err.Error() == "sql: statement is closed" || err.Error() == "invalid connection"
    }
    
    // send - sends an event to the PostgreSQL.
    func (target *PostgreSQLTarget) send(eventData event.Event) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. internal/event/target/elasticsearch.go

    	err := target.checkAndInitClient(ctx)
    	if err != nil {
    		return err
    	}
    
    	err = target.send(eventData)
    	if xnet.IsNetworkOrHostDown(err, false) {
    		return store.ErrNotConnected
    	}
    	return err
    }
    
    // send - sends the event to the target.
    func (target *ElasticsearchTarget) send(eventData event.Event) error {
    	ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
    	defer cancel()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/encoding/gob/encode.go

    	}
    	enc.freeEncoderState(state)
    }
    
    // encodeInterface encodes the interface value iv.
    // To send an interface, we send a string identifying the concrete type, followed
    // by the type identifier (which might require defining that type right now), followed
    // by the concrete value. A nil value gets sent as the empty string for the name,
    // followed by no value.
    func (enc *Encoder) encodeInterface(b *encBuffer, iv reflect.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                        logger.info("Sent {} docs (Doc:{process {}ms, send {}ms, size {}}, {})", docList.size(), docList.getProcessingTime(),
                                (systemHelper.getCurrentTimeAsLong() - execTime), MemoryUtil.byteCountToDisplaySize(docList.getContentSize()),
                                MemoryUtil.getMemoryUsageLog());
                    } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top