Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for JCenter (0.22 sec)

  1. src/runtime/proc.go

    			delay *= 2
    		}
    		if delay > 10*1000 { // up to 10ms
    			delay = 10 * 1000
    		}
    		usleep(delay)
    
    		// sysmon should not enter deep sleep if schedtrace is enabled so that
    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

        class=\\\"dashboard-header text-center\\\">\\n<span>SERVICE: $service</span>\\n</div>\",\"mode\":\"html\"},\"pluginVersion\":\"10.1.5\",\"transparent\":true,\"type\":\"text\"},{\"datasource\":{\"type\":\"prometheus\",\"uid\":\"${datasource}\"},\"fieldConfig\":{\"defaults\":{\"color\":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		semconv.K8SPodNameKey.String(pod.Name),
    		attribute.String("k8s.pod.update_type", updateType.String()),
    		semconv.K8SNamespaceNameKey.String(pod.Namespace),
    	))
    	klog.V(4).InfoS("SyncPod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer func() {
    		klog.V(4).InfoS("SyncPod exit", "pod", klog.KObj(pod), "podUID", pod.UID, "isTerminal", isTerminal)
    		otelSpan.End()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    	// https://github.com/jpeach/snippets/blob/889fda84cc8713af09205438b33553eb69dd5355/re2sz.cc to
    	// evaluate program size.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    			},
    			wantWorker: func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord) {
    				// the pod is not started and is cleaned, but the runtime state causes us to reenter
    				// and perform a direct termination (we never observed the pod as being started by
    				// us, and so it is safe to completely tear down)
    				uid := types.UID("1")
    				if len(w.podSyncStatuses) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    		t.Fatalf("got %q want %q", selectName, insertName)
    	}
    }
    
    // TestConnIsValid verifies that a database connection that should be discarded,
    // is actually discarded and does not re-enter the connection pool.
    // If the IsValid method from *fakeConn is removed, this test will fail.
    func TestConnIsValid(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxOpenConns(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	{ADPPD, yxshuf, Pq, opBytes{0x3a, 0x41, 0}},
    	{ADPPS, yxshuf, Pq, opBytes{0x3a, 0x40, 0}},
    	{AEMMS, ynone, Pm, opBytes{0x77}},
    	{AEXTRACTPS, yextractps, Pq, opBytes{0x3a, 0x17, 0}},
    	{AENTER, nil, 0, opBytes{}}, // botch
    	{AFXRSTOR, ysvrs_mo, Pm, opBytes{0xae, 01, 0xae, 01}},
    	{AFXSAVE, ysvrs_om, Pm, opBytes{0xae, 00, 0xae, 00}},
    	{AFXRSTOR64, ysvrs_mo, Pw, opBytes{0x0f, 0xae, 01, 0x0f, 0xae, 01}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	}
    	activeLog := make(chan *stateLog, 1)
    
    	// wantLog invokes doRequests, then waits for the resulting connection to
    	// either pass through the sequence of states in want or enter a state outside
    	// of that sequence.
    	wantLog := func(doRequests func(), want ...ConnState) {
    		t.Helper()
    		complete := make(chan struct{})
    		activeLog <- &stateLog{want: want, complete: complete}
    
    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