Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for auditing (0.35 sec)

  1. CONTRIBUTING.md

        change.
    -   You make the change and submit it for the review again.
    -   This cycle repeats itself until the PR gets approved.
    -   Note: As a friendly reminder, we may reach out to you if the PR is awaiting
        your response for more than 2 weeks.
    
    **4. Approved**
    
    -   Once the PR is approved, it gets `kokoro:force-run` label applied and it
        initiates CI/CD tests.
    -   We can't move forward if these tests fail.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    				return
    			}
    
    			if summary == nil {
    				if m.Version != "" {
    					panic(fmt.Sprintf("internal error: %d reqs present for %v, but summary is nil", len(reqs), m))
    				}
    				// m is the main module: we are editing its dependencies, so it cannot
    				// become disqualified.
    				return
    			}
    
    			// Before we check for problems due to transitive dependencies, first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * `warn` - Emits a warning about each insecure URL.  Generates commented-out lines to enable each repository, as per the `allow` option.  You will have to opt-in by editing the generated script and uncommenting each repository URL, or else the Gradle build will fail.
    * `upgrade` - Convert `http` URLs to `https` URLs automatically.
    
    [[sec:compile_dependencies]]
    ==== Compile-time dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top