Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for yate (0.75 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/build-cache/cache-admin-hit-rate.png

    cache-admin-hit-rate.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      /**
       * For Last-Modified and Date headers, we should echo the date back in the exact format we were
       * served.
       */
      @Test
      fun retainServedDateFormat() {
        // Serve a response with a non-standard date format that OkHttp supports.
        val lastModifiedDate = Date(System.currentTimeMillis() + TimeUnit.HOURS.toMillis(-1))
        val servedDate = Date(System.currentTimeMillis() + TimeUnit.HOURS.toMillis(-2))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    							LastHeartbeatTime:  metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC),
    							LastTransitionTime: metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC),
    						},
    						{
    							Type:               v1.NodeNetworkUnavailable,
    							Status:             v1.ConditionTrue,
    							LastHeartbeatTime:  metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC),
    							LastTransitionTime: metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC),
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    etheus","uid":"$datasource"},"expr":"sum by (type, event) (\n  rate(\n    pilot_k8s_reg_events{}\n  [$__rate_interval])\n)","legendFormat":"{{event}} {{type}}"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (type, event) (\n  rate(\n    pilot_k8s_cfg_events{}\n  [$__rate_interval])\n)","legendFormat":"{{event}} {{type}}"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (type) (\n  rate(\n    pilot_push_triggers{}\n  [$__rate_interval])\n)","legendFormat":"Push...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	c := ts.Client()
    
    	var wg sync.WaitGroup
    	gate := make(chan bool, 10)
    	n := 50
    	if testing.Short() {
    		n = 10
    		gate = make(chan bool, 3)
    	}
    	for i := 0; i < n; i++ {
    		gate <- true
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			defer func() { <-gate }()
    			res, err := c.Get(fmt.Sprintf("%s/%d", ts.URL, rand.Intn(50)))
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    			newPodCondition: &v1.PodCondition{
    				Type:               "newType",
    				Status:             "newStatus",
    				LastProbeTime:      metav1.NewTime(time.Date(2020, 5, 13, 1, 1, 1, 1, time.UTC)),
    				LastTransitionTime: metav1.NewTime(time.Date(2020, 5, 12, 1, 1, 1, 1, time.UTC)),
    				Reason:             "newReason",
    				Message:            "newMessage",
    			},
    			expectedPatchRequests:    1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              },
              "exemplar": true,
              "expr": "sum by (bucket) (rate(minio_bucket_traffic_sent_bytes{job=\"$scrape_jobs\"}[$__rate_interval]))",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Data Sent [{{bucket}}]",
              "refId": "A"
            }
          ],
          "title": "Total Data Sent Rate",
          "type": "timeseries"
        },
        {
          "datasource": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    					LastHeartbeatTime:  metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    					LastTransitionTime: metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    				{
    					Type:               v1.NodeReady,
    					Status:             v1.ConditionTrue,
    					Reason:             "KubeletReady",
    					Message:            fmt.Sprintf("kubelet is posting ready status"),
    					LastHeartbeatTime:  metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	headerDate          = []byte("Date: ")
    )
    
    // Write writes the headers described in h to w.
    //
    // This method has a value receiver, despite the somewhat large size
    // of h, because it prevents an allocation. The escape analysis isn't
    // smart enough to realize this function doesn't mutate h.
    func (h extraHeader) Write(w *bufio.Writer) {
    	if h.date != nil {
    		w.Write(headerDate)
    		w.Write(h.date)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

          --project "${PROJECT}" \
          --region "${REGION}" -q > /dev/null; then
          # successful operation - wait until it's visible
          start="$(date +%s)"
          while true; do
            now="$(date +%s)"
            # Timeout set to 15 minutes
            if [[ $((now - start)) -gt 900 ]]; then
              echo "Timeout while waiting for master IP visibility"
              exit 2
            fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top