Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Filetime (0.15 sec)

  1. cmd/metrics-v2.go

    				Value: float64(globalScannerMetrics.lifetime(scannerMetricScanFolder)),
    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: scannerSubsystem,
    					Name:      "bucket_scans_started",
    					Help:      "Total number of bucket scans started since server uptime",
    					Type:      counterMetric,
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    		ctx := httptrace.WithClientTrace(context.Background(), &httptrace.ClientTrace{
    			GotConn: func(info httptrace.GotConnInfo) {
    				t.Logf("got conn: %v, reused=%v, wasIdle=%v, idleTime=%v", info.Conn.LocalAddr(), info.Reused, info.WasIdle, info.IdleTime)
    				atomic.AddUint32(&gotConns, 1)
    			},
    			TLSHandshakeDone: func(cfg tls.ConnectionState, err error) {
    				brokenState.Lock()
    				defer brokenState.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			}
    		}
    
    		state.data[symnro] = ro
    		state.data[symnrelro] = relro
    	}
    }
    
    // dodataState holds bits of state information needed by dodata() and the
    // various helpers it calls. The lifetime of these items should not extend
    // past the end of dodata().
    type dodataState struct {
    	// Link context
    	ctxt *Link
    	// Data symbols bucketed by type.
    	data [sym.SXREF][]loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // SyncTerminatingPod is expected to terminate all running containers in a pod. Once this method
    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			c, _, _ := w.(Hijacker).Hijack()
    			c.Write([]byte("HTTP/1.0 200 OK\r\nConnection: close\r\n\r\nHello."))
    			c.Close()
    			panic("intentional panic")
    		},
    	}
    
    	// A stateLog is a log of states over the lifetime of a connection.
    	type stateLog struct {
    		active   net.Conn // The connection for which the log is recorded; set to the first connection seen in StateNew.
    		got      []ConnState
    		want     []ConnState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top