Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for efter (0.31 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Unexpected diff after adding pods (-want, +got):\n%s", diff)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != highPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", highPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != medPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", medPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			delay = 20
    		} else if idle > 50 { // start doubling the sleep after 1ms...
    			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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	}
    	// eviction manager must start after cadvisor because it needs to know if the container runtime has a dedicated imagefs
    	kl.evictionManager.Start(kl.StatsProvider, kl.GetActivePods, kl.PodIsFinished, evictionMonitoringPeriod)
    
    	// container log manager must start after container runtime is up to retrieve information from container runtime
    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    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. src/net/http/server.go

    // is not valid to use the [ResponseWriter] or read from the
    // [Request.Body] after or concurrently with the completion of the
    // ServeHTTP call.
    //
    // Depending on the HTTP client software, HTTP protocol version, and
    // any intermediaries between the client and the Go server, it may not
    // be possible to read from the [Request.Body] after writing to the
    // [ResponseWriter]. Cautious handlers should read the [Request.Body]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * the pipeline is cancelled.
       *
       * <p>All objects the pipeline has captured for closing will begin to be closed asynchronously
       * <b>after</b> the returned {@code Future} is done: the future completes before closing starts,
       * rather than once it has finished.
       *
       * <p>After calling this method, you may not call {@link
       * #finishToValueAndCloser(ValueAndCloserConsumer, Executor)}, this method, or any other
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		t.Fatal("second put failed")
    	}
    	wantIdle("after put", 2)
    	tr.CloseIdleConnections()
    	if !tr.IsIdleForTesting() {
    		t.Error("should be idle after CloseIdleConnections")
    	}
    	wantIdle("after close idle", 0)
    	if tr.PutIdleTestConn("http", "example.com") {
    		t.Fatal("put didn't fail")
    	}
    	wantIdle("after second put", 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    		for !tx.isDone() {
    			time.Sleep(pollDuration)
    		}
    	}
    	defer func() { hookTxGrabConn = nil }()
    
    	// This call will grab the connection and cancel the context
    	// after it has done so. Code after must deal with the canceled state.
    	_, err = tx.QueryContext(ctx, "SELECT|people|name|")
    	if err != nil {
    		t.Fatalf("expected error %v but got %v", nil, err)
    	}
    
    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. cmd/site-replication.go

    	var err error
    	// skip overwrite of local update if peer sent stale info
    	if !updatedAt.IsZero() {
    		if p, err := globalIAMSys.store.GetPolicyDoc(policyName); err == nil && p.UpdateDate.After(updatedAt) {
    			return nil
    		}
    	}
    	if p == nil {
    		err = globalIAMSys.DeletePolicy(ctx, policyName, true)
    	} else {
    		_, err = globalIAMSys.SetPolicy(ctx, policyName, *p)
    	}
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    func (om *fakeObjectManager) SetCreateStatefulPodError(err error, after int) {
    	om.createPodTracker.err = err
    	om.createPodTracker.after = after
    }
    
    func (om *fakeObjectManager) SetUpdateStatefulPodError(err error, after int) {
    	om.updatePodTracker.err = err
    	om.updatePodTracker.after = after
    }
    
    func (om *fakeObjectManager) SetDeleteStatefulPodError(err error, after int) {
    	om.deletePodTracker.err = err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    		t.Errorf("Expected number of remaining IPVS services after cleanup to be %v. Got %v", 4, len(remainingVirtualServers))
    	}
    	for _, vs := range remainingVirtualServers {
    		// Checking that ipvs4 and ipvs5 were removed.
    		if vs.Port == 57 {
    			t.Errorf("Expected ipvs4 to be removed after cleanup. It still remains")
    		}
    		if vs.Port == 58 {
    			t.Errorf("Expected ipvs5 to be removed after cleanup. It still remains")
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top