Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for audio (0.35 sec)

  1. cmd/config-current.go

    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditWebhookSubSys,
    			Description:     "send audit logs to webhook endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditKafkaSubSys,
    			Description:     "send audit logs to kafka endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyWebhookSubSys,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 30.8K bytes
    - Viewed (0)
  2. cmd/lceventsrc_string.go

    // Code generated by "stringer -type lcEventSrc -trimprefix lcEventSrc_ bucket-lifecycle-audit.go"; DO NOT EDIT.
    
    package cmd
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[lcEventSrc_None-0]
    	_ = x[lcEventSrc_Heal-1]
    	_ = x[lcEventSrc_Scanner-2]
    	_ = x[lcEventSrc_Decom-3]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Dec 01 15:56:24 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. api/README

    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. cmd/utils.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/rest"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v2/certs"
    	"github.com/minio/pkg/v2/env"
    	xaudit "github.com/minio/pkg/v2/logger/message/audit"
    	xnet "github.com/minio/pkg/v2/net"
    	"golang.org/x/oauth2"
    )
    
    const (
    	slashSeparator = "/"
    )
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    ### `/cluster/audit`
    
    | Name                                      | Type      | Help                                                     | Labels      |
    |-------------------------------------------|-----------|----------------------------------------------------------|-------------|
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 17:37:57 GMT 2024
    - 28.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarDomainInfo;
    
    	typedef struct {
    		unicode_string name;
    		unicode_string dns_domain;
    		unicode_string dns_forest;
    		uuid_t domain_guid;
    		sid_t *sid;
    	} LsarDnsDomainInfo;
    
    	enum {
    		POLICY_INFO_AUDIT_EVENTS   = 2,
    		POLICY_INFO_PRIMARY_DOMAIN = 3,
    		POLICY_INFO_ACCOUNT_DOMAIN = 5,
    		POLICY_INFO_SERVER_ROLE    = 6,
    		POLICY_INFO_MODIFICATION   = 9,
    		POLICY_INFO_DNS_DOMAIN     = 12
    	};
    
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (1)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarDomainInfo;
    
    	typedef struct {
    		unicode_string name;
    		unicode_string dns_domain;
    		unicode_string dns_forest;
    		uuid_t domain_guid;
    		sid_t *sid;
    	} LsarDnsDomainInfo;
    
    	enum {
    		POLICY_INFO_AUDIT_EVENTS   = 2,
    		POLICY_INFO_PRIMARY_DOMAIN = 3,
    		POLICY_INFO_ACCOUNT_DOMAIN = 5,
    		POLICY_INFO_SERVER_ROLE    = 6,
    		POLICY_INFO_MODIFICATION   = 9,
    		POLICY_INFO_DNS_DOMAIN     = 12
    	};
    
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.9.md

          - [**Admission Control**](#admission-control)
          - [**API & API server**](#api-&-api-server)
          - [**Audit**](#audit)
          - [**Custom Resources**](#custom-resources)
          - [**Other**](#other)
        - [**Apps**](#apps-1)
        - [**Auth**](#auth-3)
          - [**Audit**](#audit-1)
          - [**RBAC**](#rbac)
          - [**Other**](#other-1)
          - [**GCE**](#gce)
        - [**Autoscaling**](#autoscaling)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  9. cmd/http-tracer.go

    func httpTracerMiddleware(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// Setup a http request response recorder - this is needed for
    		// http stats requests and audit if enabled.
    		respRecorder := xhttp.NewResponseRecorder(w)
    
    		// Setup a http request body recorder
    		reqRecorder := &xhttp.RequestRecorder{Reader: r.Body}
    		r.Body = reqRecorder
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 21 01:09:35 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

    import org.lastaflute.web.util.LaRequestUtil;
    
    /**
     * @author shinsuke
     *
     */
    public class ActivityHelper {
        protected Logger logger = null;
    
        protected String loggerName = "fess.log.audit";
    
        protected String permissionSeparator = "|";
    
        protected boolean useEcsFormat = false;
    
        protected String ecsVersion = "1.2.0";
    
        protected String ecsServiceName = "fess";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top