Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,683 for EVENT (0.07 sec)

  1. internal/event/event.go

    package event
    
    import (
    	"github.com/minio/madmin-go/v3"
    )
    
    const (
    	// NamespaceFormat - namespace log format used in some event targets.
    	NamespaceFormat = "namespace"
    
    	// AccessFormat - access log format used in some event targets.
    	AccessFormat = "access"
    
    	// AMZTimeFormat - event time format.
    	AMZTimeFormat = "2006-01-02T15:04:05.000Z"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/internal/trace/raw/event.go

    import (
    	"strconv"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Event is a simple representation of a trace event.
    //
    // Note that this typically includes much more than just
    // timestamped events, and it also represents parts of the
    // trace format's framing. (But not interpreted.)
    type Event struct {
    	Version version.Version
    	Ev      event.Type
    	Args    []uint64
    	Data    []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/internal/trace/event/event.go

    	// the main stack for the current execution context of the event.
    	StackIDs []int
    
    	// StartEv indicates the event type of the corresponding "start"
    	// event, if this event is an "end," for a pair of events that
    	// represent a time range.
    	StartEv Type
    
    	// IsTimedEvent indicates whether this is an event that both
    	// appears in the main event stream and is surfaced to the
    	// trace reader.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    	// to the bookmark event.
    	//
    	// note that we decided to extend the event
    	// struct field to eliminate contention
    	// between startWatching and processEvent
    	isInitialEventsEndBookmark bool
    }
    
    // parseKV converts a KeyValue retrieved from an initial sync() listing to a synthetic isCreated event.
    func parseKV(kv *mvccpb.KeyValue) *event {
    	return &event{
    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/kubelet/events/event.go

    )
    
    // Image manager event reason list
    const (
    	InvalidDiskCapacity = "InvalidDiskCapacity"
    	FreeDiskSpaceFailed = "FreeDiskSpaceFailed"
    )
    
    // Probe event reason list
    const (
    	ContainerUnhealthy    = "Unhealthy"
    	ContainerProbeWarning = "ProbeWarning"
    )
    
    // Pod worker event reason list
    const (
    	FailedSync = "FailedSync"
    )
    
    // Config event reason list
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/events/event.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package events
    
    // volume relevant event reasons
    const (
    	FailedBinding             = "FailedBinding"
    	VolumeMismatch            = "VolumeMismatch"
    	VolumeFailedRecycle       = "VolumeFailedRecycle"
    	VolumeRecycled            = "VolumeRecycled"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 03 01:11:36 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Event.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Event sent by maven during various phases of the build process.
     * Such events can be listened to using {@link Listener}s objects
     * registered in the {@link Session}.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Event {
    
        /**
         * Gets the type of the event.
         *
         * @return the type of the event, never {@code null}
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/event.go

    }
    
    func extractEvent(event *apicorev1.Event, fieldManager string, subresource string) (*EventApplyConfiguration, error) {
    	b := &EventApplyConfiguration{}
    	err := managedfields.ExtractInto(event, internal.Parser().Type("io.k8s.api.core.v1.Event"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(event.Name)
    	b.WithNamespace(event.Namespace)
    
    	b.WithKind("Event")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  9. internal/config/lambda/event/event.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package event
    
    import "net/http"
    
    // Identity represents access key who caused the event.
    type Identity struct {
    	Type        string `json:"type"`
    	PrincipalID string `json:"principalId"`
    	AccessKeyID string `json:"accessKeyId"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/internal/trace/event/go122/event.go

    	},
    	EvStacks: event.Spec{
    		Name: "Stacks",
    	},
    	EvStack: event.Spec{
    		Name:    "Stack",
    		Args:    []string{"id", "nframes"},
    		IsStack: true,
    	},
    	EvStrings: event.Spec{
    		Name: "Strings",
    	},
    	EvString: event.Spec{
    		Name:    "String",
    		Args:    []string{"id"},
    		HasData: true,
    	},
    	EvCPUSamples: event.Spec{
    		Name: "CPUSamples",
    	},
    	EvCPUSample: event.Spec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top