Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for spent (0.11 sec)

  1. pkg/controller/endpoint/endpoints_controller_test.go

    	waitForChanReceive(t, 1*time.Second, blockNextAction, "Service Add should have caused a request to be sent to the test server")
    
    	controller.serviceStore.Delete(svc)
    	controller.onServiceDelete(svc)
    	waitForChanReceive(t, 1*time.Second, blockNextAction, "Service Delete should have caused a request to be sent to the test server")
    
    	// If endpoints cache has not updated before service update is registered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    // "Idempotency-Key" or "X-Idempotency-Key" entry. If the idempotency key
    // value is a zero-length slice, the request is treated as idempotent but the
    // header is not sent on the wire.
    type Transport struct {
    	idleMu       sync.Mutex
    	closeIdle    bool                                // user has requested to close all idle conns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				}
    			}
    			w.Stop()
    			testCheckStop(t, w)
    		})
    	}
    }
    
    // RunOptionalTestWatchDispatchBookmarkEvents tests whether bookmark events are sent.
    // This feature is currently implemented in watch cache layer, so this is optional.
    //
    // TODO(#109831): ProgressNotify feature is effectively implementing the same
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                            /*
                             * Apparently once a successful NTLMSSP login occurs, the
                             * server will return "Access denied" even if a logoff is
                             * sent. Unfortunately calling disconnect() doesn't always
                             * actually shutdown the connection before other threads
                             * have committed themselves (e.g. InterruptTest example).
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    func (p *podWorkers) ShouldPodRuntimeBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    	if status, ok := p.podSyncStatuses[uid]; ok {
    		return status.IsTerminated()
    	}
    	// a pod that hasn't been sent to the pod worker yet should have no runtime components once we have
    	// synced all content.
    	return p.podsSynced
    }
    
    func (p *podWorkers) ShouldPodContentBeRemoved(uid types.UID) bool {
    	p.podLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    		client,
    		BurstReplicas,
    	)
    	informers.Start(stopCh)
    	informers.WaitForCacheSync(stopCh)
    
    	var testRSSpec apps.ReplicaSet
    	received := make(chan string)
    
    	// The update sent through the fakeWatcher should make its way into the workqueue,
    	// and eventually into the syncHandler. The handler validates the received controller
    	// and closes the received channel to indicate that the test can finish.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    		if err != nil {
    			t.Error(err)
    		}
    		gotBody = string(b)
    	}()
    
    	select {
    	case <-reqc:
    		// Request should be sent after trying to probe the request body for 200ms.
    	case <-time.After(60 * time.Second):
    		t.Errorf("request not sent after 60s")
    	}
    
    	// Write the request body and wait for the request to complete.
    	const content = "body"
    	bodyw.Write([]byte(content))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	})
    	// Every workload should receive an event
    	s.assertEvent(t, s.podXdsName("pod1"), s.podXdsName("pod3"), s.podXdsName("waypoint-ns-pod"), s.podXdsName("waypoint2-sa"), xdsConvertedStaticStrict)
    	// Static STRICT policy should be sent
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{"ns1/selector", fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	Addresses [][]byte `protobuf:"bytes,3,rep,name=addresses,proto3" json:"addresses,omitempty"`
    	// The hostname for the workload to be resolved by the ztunnel.
    	// DNS queries are sent on-demand by default.
    	// If the resolved DNS query has several endpoints, the request will be forwarded
    	// to the first response.
    	//
    	// At a minimum, each workload must have either an address or hostname. For example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.collect.ImmutableList.builderWithExpectedSize;
    import static java.util.Collections.emptyList;
    
    /**
     * Converts progress events sent from the tooling provider to the tooling client to the corresponding event types available on the public Tooling API, and broadcasts the converted events to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top