Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for auditID (0.3 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    		$2 ~ /^CLONE_[A-Z_]+/ ||
    		$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+|BPF_F_LINK)$/ &&
    		$2 ~ /^(BPF|DLT)_/ ||
    		$2 ~ /^AUDIT_/ ||
    		$2 ~ /^(CLOCK|TIMER)_/ ||
    		$2 ~ /^CAN_/ ||
    		$2 ~ /^CAP_/ ||
    		$2 ~ /^CP_/ ||
    		$2 ~ /^CPUSTATES$/ ||
    		$2 ~ /^CTLIOCGINFO$/ ||
    		$2 ~ /^ALG_/ ||
    		$2 ~ /^FI(CLONE|DEDUPERANGE)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    						ExtraArgs: []kubeadmapi.Arg{
    							{Name: "service-cluster-ip-range", Value: "baz"},
    							{Name: "advertise-address", Value: "9.9.9.9"},
    							{Name: "audit-policy-file", Value: "/etc/config/audit.yaml"},
    							{Name: "audit-log-path", Value: "/var/log/kubernetes"},
    						},
    					},
    				},
    			},
    			endpoint: &kubeadmapi.APIEndpoint{BindPort: 123, AdvertiseAddress: "1.2.3.4"},
    			expected: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilwaitgroup "k8s.io/apimachinery/pkg/util/waitgroup"
    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	genericapi "k8s.io/apiserver/pkg/endpoints"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	discoveryendpoint "k8s.io/apiserver/pkg/endpoints/discovery/aggregated"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. cmd/handler-api.go

    			globalHTTPStats.addRequestsInQueue(-1)
    			// When the client disconnects before getting the S3 handler
    			// status code response, set the status code to 499 so this request
    			// will be properly audited and traced.
    			w.WriteHeader(499)
    		}
    	}
    }
    
    func (t *apiConfig) getReplicationOpts() replicationPoolOpts {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	if t.replicationPriority == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			return
    		}
    		options.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("PatchOptions"))
    
    		admit = admission.WithAudit(admit)
    
    		audit.LogRequestPatch(req.Context(), patchBytes)
    		span.AddEvent("Recorded the audit event")
    
    		baseContentType := runtime.ContentTypeJSON
    		if patchType == types.ApplyPatchType {
    			baseContentType = runtime.ContentTypeYAML
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    	d.maxSleep = maxWait
    	d.cycle = make(chan struct{})
    	return nil
    }
    
    const (
    	// ILMExpiry - audit trail for ILM expiry
    	ILMExpiry = "ilm:expiry"
    	// ILMFreeVersionDelete - audit trail for ILM free-version delete
    	ILMFreeVersionDelete = "ilm:free-version-delete"
    	// ILMTransition - audit trail for ILM transitioning.
    	ILMTransition = " ilm:transition"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apiserver/pkg/admission"
    	webhooktesting "k8s.io/apiserver/pkg/admission/plugin/webhook/testing"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    )
    
    // BenchmarkAdmit tests the performance cost of invoking a mutating webhook
    func BenchmarkAdmit(b *testing.B) {
    	testServerURL := os.Getenv("WEBHOOK_TEST_SERVER_URL")
    	if len(testServerURL) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. internal/logger/target/kafka/kafka.go

    		if _, err := xnet.ParseHost(b.String()); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // Name returns the name of the target
    func (h *Target) Name() string {
    	return "minio-kafka-audit"
    }
    
    // Endpoint - return kafka target
    func (h *Target) Endpoint() string {
    	return "kafka"
    }
    
    // String - kafka string
    func (h *Target) String() string {
    	return "kafka"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    	clocktesting "k8s.io/utils/clock/testing"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	webhooktesting "k8s.io/apiserver/pkg/admission/plugin/webhook/testing"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    )
    
    // BenchmarkValidate tests that ValidatingWebhook#Validate works as expected
    func BenchmarkValidate(b *testing.B) {
    	testServerURL := os.Getenv("WEBHOOK_TEST_SERVER_URL")
    	if len(testServerURL) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/config.go

    		lastErr = fmt.Errorf("invalid authorization config: %w", err)
    		return
    	}
    	if s.Authorization != nil && !enablesRBAC {
    		genericConfig.DisabledPostStartHooks.Insert(rbacrest.PostStartHookName)
    	}
    
    	lastErr = s.Audit.ApplyTo(genericConfig)
    	if lastErr != nil {
    		return
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.AggregatedDiscoveryEndpoint) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top