Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for RequestReceived (0.65 sec)

  1. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            given:
            def requestReceived = false
            def terminate = false
            setupLockOwner {
                requestReceived = true
                while(!terminate) { Thread.sleep(100) } //block the release action thread
            }
    
            when:
            def build = executer.withTasks("lock").start()
            poll(120) { assert requestReceived }
    
            // simulate additional requests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation_test.go

    			UserGroups: []string{"developers"},
    			NonResourceURLs: []string{
    				"/logs*",
    				"/healthz*",
    				"/metrics",
    				"*",
    			},
    		}, { // Omit RequestReceived stage
    			Level: audit.LevelMetadata,
    			OmitStages: []audit.Stage{
    				audit.Stage("RequestReceived"),
    			},
    		},
    	}
    	successCases := []audit.Policy{}
    	for _, rule := range validRules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/client/tests/remotecommand_test.go

    				var (
    					streamIn             io.Reader
    					streamOut, streamErr io.Writer
    				)
    				localOut := &bytes.Buffer{}
    				localErr := &bytes.Buffer{}
    
    				requestReceived := make(chan struct{})
    				server := httptest.NewServer(fakeServer(t, requestReceived, name, exec, testCase.Stdin, testCase.Stdout, testCase.Stderr, testCase.Error, testCase.Tty, testCase.MessageCount, testCase.ServerProtocols))
    				defer server.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    	// The stage for events generated once the response headers are sent, but before the response body
    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        omitStages:
          - "RequestReceived"
      # Get responses can be large; skip them.
      - level: Request
        verbs: ["get", "list", "watch"]
        resources: ${known_apis}
        omitStages:
          - "RequestReceived"
      # Default level for known APIs
      - level: RequestResponse
        resources: ${known_apis}
        omitStages:
          - "RequestReceived"
      # Default level for all other requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    	// The stage for events generated once the response headers are sent, but before the response body
    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    					Verb:           "watch",
    					RequestURI:     longRunningPath,
    					ResponseStatus: &metav1.Status{Code: 500},
    				},
    			},
    			true,
    		},
    		{
    			"omit RequestReceived",
    			shortRunningPath,
    			"GET",
    			"",
    			[]auditinternal.Stage{auditinternal.StageRequestReceived},
    			func(w http.ResponseWriter, req *http.Request) {
    				w.Write([]byte("foo"))
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	// flush before sending a response.
    	ModeBlocking = "blocking"
    	// ModeBlockingStrict is the same as ModeBlocking, except when there is
    	// a failure during audit logging at RequestReceived stage, the whole
    	// request to apiserver will fail.
    	ModeBlockingStrict = "blocking-strict"
    )
    
    // AllowedModes is the modes known for audit backends.
    var AllowedModes = []string{
    	ModeBatch,
    	ModeBlocking,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * dockershim: check the error when syncing the checkpoint. ([#52125](https://github.com/kubernetes/kubernetes/pull/52125), [@yujuhong](https://github.com/yujuhong))
    * By default, clusters on GCE no longer sends RequestReceived audit event, if advanced audit is configured. ([#52343](https://github.com/kubernetes/kubernetes/pull/52343), [@crassirostris](https://github.com/crassirostris))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top