Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for tent (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

    			if err != nil {
    				conn.Close()
    				return nil, err
    			}
    		}
    
    		if resp.StatusCode != 200 {
    			_, text, ok := strings.Cut(resp.Status, " ")
    			conn.Close()
    			if !ok {
    				return nil, errors.New("unknown status code")
    			}
    			return nil, errors.New(text)
    		}
    	}
    
    	if cm.proxyURL != nil && cm.targetScheme == "https" {
    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

    		watchTests []*testWatchStruct
    	}{{
    		name:       "create a key",
    		namespace:  fmt.Sprintf("test-ns-1-%t", recursive),
    		watchTests: []*testWatchStruct{{basePod, true, watch.Added}},
    		pred:       storage.Everything,
    	}, {
    		name:       "key updated to match predicate",
    		namespace:  fmt.Sprintf("test-ns-2-%t", recursive),
    		watchTests: []*testWatchStruct{{basePod, false, ""}, {basePodAssigned, true, watch.Added}},
    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. pilot/pkg/model/push_context.go

    type XDSUpdater interface {
    	// EDSUpdate is called when the list of endpoints or labels in a Service is changed.
    	// For each cluster and hostname, the full list of active endpoints (including empty list)
    	// must be sent. The shard name is used as a key - current implementation is using the
    	// registry name.
    	EDSUpdate(shard ShardKey, hostname string, namespace string, entry []*IstioEndpoint)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K 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

    		},
    	}
    
    	for _, test := range tests {
    		SetCondition(test.status, test.cond)
    		if !reflect.DeepEqual(test.status, test.expectedStatus) {
    			t.Errorf("%s: expected status: %v, got: %v", test.name, test.expectedStatus, test.status)
    		}
    	}
    }
    
    func TestRemoveCondition(t *testing.T) {
    	tests := []struct {
    		name string
    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

    	}{
    		// don't send user:
    		{lastReq: "http://gopher@test.com", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher@test.com", newReq: "https://link.com", want: "https://test.com"},
    
    		// don't send a user and password:
    		{lastReq: "http://gopher:go@test.com", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://gopher:go@test.com", newReq: "https://link.com", want: "https://test.com"},
    
    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

    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/workloadapi"
    	"istio.io/istio/pkg/workloadapi/security"
    )
    
    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 org.gradle.tooling.events.test.Destination;
    import org.gradle.tooling.events.test.JvmTestKind;
    import org.gradle.tooling.events.test.TestFinishEvent;
    import org.gradle.tooling.events.test.TestOperationDescriptor;
    import org.gradle.tooling.events.test.TestOperationResult;
    import org.gradle.tooling.events.test.TestOutputDescriptor;
    import org.gradle.tooling.events.test.TestOutputEvent;
    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