Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for JCenter (0.27 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "gridPos": { "h": 1, "w": 24, "x": 0, "y": 0 }, "id": 106, "panels": [ { "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>", "fieldConfig": { "defaults": { "custom": {} }, "overrides": [] }, "gridPos": { "h": 3, "w": 24, "x": 0, "y": 1 }, "id": 89, "links": [], "mode": "html", "options": { "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>", "mode": "html" }, "pluginVersion": "7.1.0", "title": "", "transparent":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation_test.go

    		`America/Montserrat`,
    		`America/Nassau`,
    		`America/New_York`,
    		`America/Nipigon`,
    		`America/Nome`,
    		`America/Noronha`,
    		`America/North_Dakota/Beulah`,
    		`America/North_Dakota/Center`,
    		`America/North_Dakota/New_Salem`,
    		`America/Nuuk`,
    		`America/Ojinaga`,
    		`America/Panama`,
    		`America/Pangnirtung`,
    		`America/Paramaribo`,
    		`America/Phoenix`,
    		`America/Port-au-Prince`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/podautoscaler/horizontal_test.go

    //
    //	time.Now()-periodSeconds  ; time.Now()
    //
    // It split the time window into several segments (by the number of events) and put the event in the center of the segment
    // it is needed if you want to create events for several policies (to check how "outdated" flag is set).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      if (node.IsLoopCond()) {
        return builder_.create<mlir::tf_executor::LoopCondOp>(loc, types, operands,
                                                              result.attributes);
      }
      if (node.IsEnter()) {
        return builder_.create<mlir::tf_executor::EnterOp>(loc, types, operands,
                                                           result.attributes);
      }
      if (node.IsExit()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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