Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 109 of 109 for auditing (1.01 sec)

  1. pkg/controller/endpoint/endpoints_controller_test.go

    		// previously controller could assign wrong ip to endpoint address
    		// with gate removed. this is no longer the case. this is *not* behavior change
    		// because previously things would have failed in kube-proxy anyway (due to editing wrong iptables).
    		{
    			name:       "v6 service, in a v4 only cluster.",
    			ipFamilies: ipv4only,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: "3000::1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * comments.
         */
    
        @Weak final MapMakerInternalMap<K, V, E, S> map;
    
        /**
         * The number of live elements in this segment's region. This does not include unset elements
         * which are awaiting cleanup.
         */
        volatile int count;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/en/docs/release-notes.md

    ### Internal
    
    * 🔧 Update sponsors, remove Flint. PR [#10349](https://github.com/tiangolo/fastapi/pull/10349) by [@tiangolo](https://github.com/tiangolo).
    * 🔧 Rename label "awaiting review" to "awaiting-review" to simplify search queries. PR [#10343](https://github.com/tiangolo/fastapi/pull/10343) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    func (e *http2httpError) Timeout() bool { return e.timeout }
    
    func (e *http2httpError) Temporary() bool { return true }
    
    var http2errTimeout error = &http2httpError{msg: "http2: timeout awaiting response headers", timeout: true}
    
    type http2connectionStater interface {
    	ConnectionState() tls.ConnectionState
    }
    
    var http2sorterPool = sync.Pool{New: func() interface{} { return new(http2sorter) }}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top