Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 177 for auditing (0.44 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

       * The deadline is currently hardcoded. We may make this configurable in the future!
       */
      internal fun sendDegradedPingLater() {
        this.withLock {
          if (degradedPongsReceived < degradedPingsSent) return // Already awaiting a degraded pong.
          degradedPingsSent++
          degradedPongDeadlineNs = System.nanoTime() + DEGRADED_PONG_TIMEOUT_NS
        }
        writerQueue.execute("$connectionName ping") {
          writePing(false, DEGRADED_PING, 0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/utils.go

    	// set during decommissioning.
    	if reqInfo := logger.GetReqInfo(ctx); reqInfo != nil {
    		reqInfo.PopulateTagsMap(entry.Tags)
    	}
    	ctx = logger.SetAuditEntry(ctx, &entry)
    	logger.AuditLog(ctx, nil, nil, nil)
    }
    
    func newTLSConfig(getCert certs.GetCertificateFunc) *tls.Config {
    	if getCert == nil {
    		return nil
    	}
    
    	tlsConfig := &tls.Config{
    		PreferServerCipherSuites: true,
    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. docs/en/docs/async.md

    ## `async` and `await`
    
    Modern versions of Python have a very intuitive way to define asynchronous code. This makes it look just like normal "sequential" code and do the "awaiting" for you at the right moments.
    
    When there is an operation that will require waiting before giving the results and has support for these new Python features, you can code it like:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    	return d.off - 1
    }
    
    // phasePanicMsg is used as a panic message when we end up with something that
    // shouldn't happen. It can indicate a bug in the JSON decoder, or that
    // something is editing the data slice while the decoder executes.
    const phasePanicMsg = "JSON decoder out of sync - data changing underfoot?"
    
    func (d *decodeState) init(data []byte) *decodeState {
    	d.data = data
    	d.off = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/net/http/client.go

    			// c.send() always closes req.Body
    			reqBodyClosed = true
    			if !deadline.IsZero() && didTimeout() {
    				err = &timeoutError{err.Error() + " (Client.Timeout exceeded while awaiting headers)"}
    			}
    			return nil, uerr(err)
    		}
    
    		var shouldRedirect bool
    		redirectMethod, shouldRedirect, includeBody = redirectBehavior(req.Method, resp, reqs[0])
    		if !shouldRedirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. 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)
  7. src/go/printer/printer.go

    	SourcePos                  // emit //line directives to preserve original source positions
    )
    
    // The mode below is not included in printer's public API because
    // editing code text is deemed out of scope. Because this mode is
    // unexported, it's also possible to modify or remove it based on
    // the evolving needs of go/format and cmd/gofmt without breaking
    // users. See discussion in CL 240683.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    func (t *Transport) maxIdleConnsPerHost() int {
    	if v := t.MaxIdleConnsPerHost; v != 0 {
    		return v
    	}
    	return DefaultMaxIdleConnsPerHost
    }
    
    // tryPutIdleConn adds pconn to the list of idle persistent connections awaiting
    // a new request.
    // If pconn is no longer needed or not in a good state, tryPutIdleConn returns
    // an error explaining why it wasn't registered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    	// We allow both tag and branch names as 'tags'
    	// for selecting a version. This lets people have
    	// a go.release.r60 branch and a go1 branch
    	// and make changes in both, without constantly
    	// editing .hgtags.
    	TagCmd: []tagCmd{
    		{"tags", `^(\S+)`},
    		{"branches", `^(\S+)`},
    	},
    	TagSyncCmd:     []string{"update -r {tag}"},
    	TagSyncDefault: []string{"update default"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

       * Artifact is not signed
       * Needed because PGP signature verification failed!
       * Key couldn't be downloaded
    
       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top