Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for eventType (0.15 seconds)

  1. cmd/bucket-replication.go

    						},
    						Bucket:    roi.Bucket,
    						OpType:    replication.ExistingObjectReplicationType,
    						EventType: ReplicateExistingDelete,
    					}
    					replicateDelete(ctx, doi, objectAPI)
    				} else {
    					roi.OpType = replication.ExistingObjectReplicationType
    					roi.EventType = ReplicateExisting
    					replicateObject(ctx, roi, objectAPI)
    				}
    
    				st := TargetReplicationResyncStatus{
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 118.2K bytes
    - Click Count (0)
  2. cmd/object-handlers.go

    				DeleteMarkerMTime:     DeleteMarkerMTime{objInfo.ModTime},
    				DeleteMarker:          objInfo.DeleteMarker,
    				ReplicationState:      objInfo.ReplicationState(),
    			},
    			Bucket:    bucket,
    			EventType: ReplicateIncomingDelete,
    		}
    		scheduleReplicationDelete(ctx, dobj, objectAPI)
    	}
    
    	// Remove the transitioned object whose object version is being overwritten.
    	if !globalTierConfigMgr.Empty() {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 120.6K bytes
    - Click Count (0)
  3. fastapi/routing.py

            support for on_startup/on_shutdown handlers.
    
            Ref: https://github.com/Kludex/starlette/pull/3117
            """
            assert event_type in ("startup", "shutdown")
            if event_type == "startup":
                self.on_startup.append(func)
            else:
                self.on_shutdown.append(func)
    
        @deprecated(
            """
            on_event is deprecated, use lifespan event handlers instead.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  4. fastapi/applications.py

            Read more about it in the
            [FastAPI docs for Lifespan Events](https://fastapi.tiangolo.com/advanced/events/).
            """
        )
        def on_event(
            self,
            event_type: Annotated[
                str,
                Doc(
                    """
                    The type of event. `startup` or `shutdown`.
                    """
                ),
            ],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
Back to Top