Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 148 for auditID (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	ExecutingPhase = "executing"
    )
    
    const (
    	// deprecatedAnnotationKey is a key for an audit annotation set to
    	// "true" on requests made to deprecated API versions
    	deprecatedAnnotationKey = "k8s.io/deprecated"
    	// removedReleaseAnnotationKey is a key for an audit annotation set to
    	// the target removal release, in "<major>.<minor>" format,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  2. 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/v3/certs"
    	"github.com/minio/pkg/v3/env"
    	xaudit "github.com/minio/pkg/v3/logger/message/audit"
    	xnet "github.com/minio/pkg/v3/net"
    	"golang.org/x/oauth2"
    )
    
    const (
    	slashSeparator = "/"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Version will enable the /version endpoint if non-nil
    	Version *version.Info
    	// AuditBackend is where audit events are sent to.
    	AuditBackend audit.Backend
    	// AuditPolicyRuleEvaluator makes the decision of whether and how to audit log a request.
    	AuditPolicyRuleEvaluator audit.PolicyRuleEvaluator
    	// ExternalAddress is the host name to use for external (public internet) facing URLs (e.g. Swagger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. pkg/serviceaccount/jwt.go

    	"encoding/json"
    	"fmt"
    	"strings"
    
    	jose "gopkg.in/square/go-jose.v2"
    	"gopkg.in/square/go-jose.v2/jwt"
    
    	v1 "k8s.io/api/core/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	apiserverserviceaccount "k8s.io/apiserver/pkg/authentication/serviceaccount"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    		tracker.DecodeTracker.TrackDuration(d)
    	}
    }
    
    // AuditAnnotationsFromLatencyTrackers will inspect each latency tracker
    // associated with the request context and return a set of audit
    // annotations that can be added to the API audit entry.
    func AuditAnnotationsFromLatencyTrackers(ctx context.Context) map[string]string {
    	const (
    		transformLatencyKey         = "apiserver.latency.k8s.io/transform-response-object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pkg/serviceaccount/claims.go

    */
    
    package serviceaccount
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"time"
    
    	"github.com/google/uuid"
    	"gopkg.in/square/go-jose.v2/jwt"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apiserver/pkg/audit"
    	apiserverserviceaccount "k8s.io/apiserver/pkg/authentication/serviceaccount"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/cache/prog.go

    		// read through a corresponding Get. Audit callers and check, and document
    		// error types on the Cache interface.
    		return Entry{}, &entryNotFoundError{}
    	}
    	res, err := c.send(c.ctx, &ProgRequest{
    		Command:  cmdGet,
    		ActionID: a[:],
    	})
    	if err != nil {
    		return Entry{}, err // TODO(bradfitz): or entryNotFoundError? Audit callers.
    	}
    	if res.Miss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. 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)
Back to top