- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for listen (0.12 sec)
-
istioctl/pkg/describe/describe.go
if l.ActiveState == nil { continue } // Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info. l.ActiveState.Listener.TypeUrl = v3.ListenerType listenerTyped := &listener.Listener{} err = l.ActiveState.Listener.UnmarshalTo(listenerTyped) if err != nil { return nil, err } if listenerTyped.Name == model.VirtualInboundListenerName {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
docs/bucket/notifications/README.md
``` Here we see that MinIO performed `HSET` on `minio_events` key. In case, `access` format was used, then `minio_events` would be a list, and the MinIO server would have performed an `RPUSH` to append to the list. A consumer of this list would ideally use `BLPOP` to remove list items from the left-end of the list. ## Publish MinIO events via NATS Install NATS from [here](http://nats.io/). ### Step 1: Add NATS endpoint to MinIO
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 84K bytes - Viewed (0) -
cmd/peer-rest-server.go
} mask.MergeMaskable(eventName) eventNames = append(eventNames, eventName) } rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()}) // Listen Publisher uses nonblocking publish and hence does not wait for slow subscribers. // Use buffered channel to take care of burst sends or slow w.Write() ch := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
cmd/test-utils_test.go
return makeTestTargetURL(endPoint, bucketName, prefix, queryValue) } // return URL for listing objects in the bucket with V2 API. func getListObjectsV2URL(endPoint, bucketName, prefix, maxKeys, fetchOwner, encodingType, delimiter string) string { queryValue := url.Values{} queryValue.Set("list-type", "2") // Enables list objects V2 URL. if maxKeys != "" { queryValue.Set("max-keys", maxKeys) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0) -
cmd/object-api-multipart_test.go
UploadID: uploadIDs[6], }, }, }, // listMultipartResults - 32. // checking listing with marker set to no of objects in the list. // `NextUploadIDMarker` is expected to be empty since all results are listed. // `NextKeyMarker` is expected to be empty since all results are listed. { MaxUploads: 6, IsTruncated: false, Uploads: []MultipartInfo{ {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 88.8K bytes - Viewed (0) -
common/scripts/metallb-native.yaml
labels: app: metallb name: pod-lister namespace: metallb-system rules: - apiGroups: - "" resources: - pods verbs: - list - apiGroups: - "" resources: - secrets verbs: - get - list - watch - apiGroups: - "" resources: - configmaps verbs: - get - list - watch - apiGroups:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 23 23:56:31 UTC 2024 - 63.9K bytes - Viewed (0) -
cmd/erasure-server-pool.go
// repeatedly. This workaround recursively lists the top 3 entries including delete markers to reflect the // correct state of the directory in the list results. if strings.HasSuffix(opts.Prefix, SlashSeparator) { li, err := listFn(ctx, opts, maxKeys) if err != nil { return loi, err } if len(li.Objects) == 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 89.8K bytes - Viewed (0) -
tensorflow/c/c_api.h
TF_DeprecatedSession* session, TF_Status* status); // Deallocates the device list. TF_CAPI_EXPORT extern void TF_DeleteDeviceList(TF_DeviceList* list); // Counts the number of elements in the device list. TF_CAPI_EXPORT extern int TF_DeviceListCount(const TF_DeviceList* list); // Retrieves the full name of the device (e.g. /job:worker/replica:0/...)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/BUILD
"//tensorflow/lite/c:common", "//tensorflow/lite/core/api", "//tensorflow/lite/delegates/flex:delegate", "//tensorflow/lite/kernels/internal:compatibility", "//tensorflow/lite/kernels:builtin_ops", "//tensorflow/lite/kernels:reference_ops", "//tensorflow/compiler/mlir/lite/schema:schema_fbs", "//tensorflow/lite/toco/logging:conversion_log_util",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig.go
var podName, podNamespace string listenerConfigCmd := &cobra.Command{ Use: "listener [<type>/]<name>[.<namespace>]", Short: "Retrieves listener configuration for the Envoy in the specified pod", Long: `Retrieve information about listener configuration for the Envoy instance in the specified pod.`, Example: ` # Retrieve summary about listener configuration for a given pod from Envoy. istioctl proxy-config listeners <pod-name[.namespace]>
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 15:53:49 UTC 2024 - 50.6K bytes - Viewed (0)