Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 582 for observ (0.12 sec)

  1. releasenotes/notes/28003.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 28003
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 10 21:53:32 UTC 2020
    - 171 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    	})
    }
    
    func recordAuthenticationLatency(result, jwtIssuerHash string, duration time.Duration) {
    	jwtAuthenticatorLatencyMetric.WithLabelValues(result, jwtIssuerHash).Observe(duration.Seconds())
    }
    
    func getHash(data string) string {
    	if len(data) > 0 {
    		return fmt.Sprintf("sha256:%x", sha256.Sum256([]byte(data)))
    	}
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    func RecordFilterLatency(ctx context.Context, name string, elapsed time.Duration) {
    	requestFilterDuration.WithContext(ctx).WithLabelValues(name).Observe(elapsed.Seconds())
    }
    
    func RecordTimestampComparisonLatency(codePath string, elapsed time.Duration) {
    	requestTimestampComparisonDuration.WithLabelValues(codePath).Observe(elapsed.Seconds())
    }
    
    func RecordRequestPostTimeout(source string, status string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/metrics.go

    func (delegatingAuthorizerMetrics) RecordRequestLatency(ctx context.Context, code string, latency float64) {
    	requestLatency.WithContext(ctx).WithLabelValues(code).Observe(latency)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    [short] skip
    env GO111MODULE=off
    
    # test should work too
    go test github.com/rsc/go-get-issue-11864
    go test github.com/rsc/go-get-issue-11864/t
    
    # external tests should observe internal test exports (golang.org/issue/11977)
    go test github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/m.go --
    package g
    
    import _ "vendor.org/p"
    import _ "vendor.org/p1"
    
    func main() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_upgrade_pseudo.txt

    # 'get example.com/pseudoupgrade@latest' should downgrade.
    # @latest should not consider the current version.
    go get example.com/pseudoupgrade@latest
    go list -m all
    stdout '^example.com/pseudoupgrade v0.1.0$'
    
    # We should observe the same behavior with the newer pseudo-version.
    go get example.com/pseudoupgrade@v0.0.0-20190430073000-30950c05d534
    
    # 'get -u' should not downgrade to the chronologically older tagged version.
    go get -u
    go list -m -u all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/graph_builder.go

    				if ownerNode.isObserved() {
    					// The owner node has been observed via an informer
    					// n's owner reference doesn't match the observed identity, this might be wrong.
    					logger.V(2).Info("item references an owner with coordinates that do not match the observed identity", "item", n.identity, "owner", ownerNode.identity)
    				}
    				hasPotentiallyInvalidOwnerReference = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

    /* Samba 2.2.7 needs ATTR_NORMAL
     */
            writeInt2( 0x80 | attributes, dst, dstIndex ); dstIndex += 2; 
                                            /* 6 zeros observed with NT */
            writeInt8( 0L, dst, dstIndex ); dstIndex += 6;
    
                    /* Also observed 4 byte alignment but we stick
                     * with the default for jCIFS which is 2 */
    
            return dstIndex - start;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/sync_test.go

    	}()
    	mu.Lock()
    	for condition != 1 {
    		cond.Wait()
    	}
    	mu.Unlock()
    	x = 2
    	<-done
    }
    
    // We do not currently automatically
    // parse this test. It is intended that the creation
    // stack is observed manually not to contain
    // off-by-one errors
    func TestRaceAnnounceThreads(t *testing.T) {
    	const N = 7
    	allDone := make(chan bool, N)
    
    	var x int
    	_ = x
    
    	var f, g, h func()
    	f = func() {
    		x = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 15:05:17 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

            int start = dstIndex;
            dstIndex += this.info.encode(dst, dstIndex);
    
            /* 6 zeros observed with NT */
            SMBUtil.writeInt8(0L, dst, dstIndex);
            dstIndex += 6;
    
            /*
             * Also observed 4 byte alignment but we stick
             * with the default for jCIFS which is 2
             */
    
            return dstIndex - start;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
Back to top