Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 581 for seni (0.04 sec)

  1. src/encoding/gob/encoder.go

    		if enc.err != nil {
    			return
    		}
    		// If the type info has still not been transmitted, it means we have
    		// a singleton basic type (int, []byte etc.) at top level. We don't
    		// need to send the type info but we do need to update enc.sent.
    		if !sent {
    			info, err := getTypeInfo(ut)
    			if err != nil {
    				enc.setError(err)
    				return
    			}
    			enc.sent[rt] = info.id
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.proto

    // Keep workload that we can't find in the fd cache. This can only be sent before SnapshotSent is sent
    // to signal ztunnel to not delete the workload if it has it.
    message KeepWorkload {
      string uid = 1;
    }
    
    // Delete a workload from the ztunnel. Ztunnel should shutdown the workload's proxy.
    message DelWorkload {
      string uid = 2;
    }
    
    // Let ztunnel know that a full snapshot was sent. Ztunnel should reconcile its internal state
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/chans.go

    	runtime.SetFinalizer(r, r.finalize)
    	return s, r
    }
    
    // A sender is used to send values to a Receiver.
    type Sender[T any] struct {
    	values chan<- T
    	done <-chan bool
    }
    
    // Send sends a value to the receiver. It returns whether any more
    // values may be sent; if it returns false the value was not sent.
    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // byte indicating the channel number (zero indexed) the message was sent on. Messages in both
    // directions should prefix their messages with this channel byte. Used for remote execution,
    // the channel numbers are by convention defined to match the POSIX file-descriptors assigned
    // to STDIN, STDOUT, and STDERR (0, 1, and 2). No other conversion is performed on the raw
    // subprotocol - writes are sent as they are received by the server.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

                            logger.debug("Sent {} to {}.", body, url);
                        }
                    } else {
                        logger.warn("Failed to send {} to {}. HTTP Status is {}. {}", body, url, response.getHttpStatusCode(),
                                response.getContentAsString());
                    }
                } catch (final IOException e) {
                    logger.warn("Failed to send {} to {}.", body, url, e);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// 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.
    	// If the feature gate WatchBookmarks is not enabled in apiserver,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    )
    
    // The WebSocket subprotocol "binary.k8s.io" will only send messages to the
    // client and ignore messages sent to the server. The received messages are
    // the exact bytes written to the stream. Zero byte messages are possible.
    const binaryWebSocketProtocol = "binary.k8s.io"
    
    // The WebSocket subprotocol "base64.binary.k8s.io" will only send messages to the
    // client and ignore messages sent to the server. The received messages are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv12-SNI

    Filippo Valsorda <******@****.***> 1684886145 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. internal/grid/muxserver.go

    			if debugPrint {
    				fmt.Println("muxServer: Mux", m.ID, "send EOF", hErr)
    			}
    			msg.Flags |= FlagEOF
    			if hErr != nil {
    				msg.Flags |= FlagPayloadIsErr
    				msg.Payload = []byte(*hErr)
    			}
    			msg.setZeroPayloadFlag()
    			m.send(msg)
    			return
    		}
    		msg.Payload = payload
    		msg.setZeroPayloadFlag()
    		m.send(msg)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. fastapi/background.py

                email_file.write(content)
    
    
        @app.post("/send-notification/{email}")
        async def send_notification(email: str, background_tasks: BackgroundTasks):
            background_tasks.add_task(write_notification, email, message="some notification")
            return {"message": "Notification sent in the background"}
        ```
        """
    
        def add_task(
            self,
            func: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top