Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for auditing (0.38 sec)

  1. src/debug/elf/elf.go

    	// before all symbols except the primary load object, which is typically the
    	// executable.
    	DF_1_SYMINTPOSE DynFlag1 = 0x00800000
    	// Indicates that the executable requires global auditing.
    	DF_1_GLOBAUDIT DynFlag1 = 0x01000000
    	// Indicates that the object defines, or makes reference to singleton symbols.
    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

          - "RequestReceived"
      # Default level for all other requests.
      - level: Metadata
        omitStages:
          - "RequestReceived"
    EOF
    }
    
    # Writes the configuration file used by the webhook advanced auditing backend.
    function create-master-audit-webhook-config {
      local -r path="${1}"
    
      if [[ -n "${GCP_AUDIT_URL:-}" ]]; then
        # The webhook config file is a kubeconfig file describing the webhook endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    // also specify a data serialization format (JSON, CSV) of the object.
    func (api objectAPIHandlers) SelectObjectContentHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "SelectObject")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	// Fetch object stat info.
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // but a different target file can be specified after the editing flags.
    //
    // The editing flags specify a sequence of editing operations.
    //
    // The -fmt flag reformats the go.mod file without making other changes.
    // This reformatting is also implied by any other modifications that use or
    // rewrite the go.mod file. The only time this flag is needed is if no other
    // flags are specified, as in 'go mod edit -fmt'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    	fakeRuleEvaluator := auditpolicy.NewFakePolicyRuleEvaluator(auditinternal.LevelRequestResponse, nil)
    	handler := genericapifilters.WithAudit(mux, auditSink, fakeRuleEvaluator, longRunningCheck)
    	handler = genericapifilters.WithRequestDeadline(handler, auditSink, fakeRuleEvaluator, longRunningCheck, codecs, 60*time.Second)
    	handler = genericapifilters.WithRequestInfo(handler, testRequestInfoResolver())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    						timeout *= 2
    						retry = true
    					}
    				}
    				if !strings.Contains(err.Error(), "timeout awaiting response headers") {
    					t.Errorf("%d. unexpected error: %v", i, err)
    				}
    				continue
    			}
    			if tt.wantTimeout {
    				t.Errorf(`no error for path %q; expected "timeout awaiting response headers"`, tt.path)
    				continue
    			}
    			if res.StatusCode != 200 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	grabConn(context.Context) (*driverConn, releaseConn, error)
    
    	// txCtx returns the transaction context if available.
    	// The returned context should be selected on along with
    	// any query context when awaiting a cancel.
    	txCtx() context.Context
    }
    
    var (
    	_ stmtConnGrabber = &Tx{}
    	_ stmtConnGrabber = &Conn{}
    )
    
    // Stmt is a prepared statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         * present in the cache. Active values consist of live values, which are returned by cache
         * lookups, and dead values, which have been evicted but awaiting removal. Non-active values
         * consist strictly of loading values, though during refresh a value may be both active and
         * loading.
         */
        boolean isActive();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

         * present in the cache. Active values consist of live values, which are returned by cache
         * lookups, and dead values, which have been evicted but awaiting removal. Non-active values
         * consist strictly of loading values, though during refresh a value may be both active and
         * loading.
         */
        boolean isActive();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			manager.processNextWorkItem(context.TODO())
    			if tc.wantRequeued {
    				verifyEmptyQueueAndAwaitForQueueLen(ctx, t, manager, 1)
    			} else {
    				// We advance the clock to make sure there are not items awaiting
    				// to be added into the queue. We also sleep a little to give the
    				// delaying queue time to move the potential items from pre-queue
    				// into the queue asynchronously.
    				manager.clock.Sleep(fastJobApiBackoff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top