Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for spent (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. configure.py

          [environ_cp['PYTHON_BIN_PATH'], paths[0]] + cuda_libraries,
          stdout=subprocess.PIPE,
          env=maybe_encode_env(environ_cp))
    
      if proc.wait():
        # Errors from find_cuda_config.py were sent to stderr.
        print('Asking for detailed CUDA configuration...\n')
        return False
    
      config = dict(
          tuple(line.decode('ascii').rstrip().split(': ')) for line in proc.stdout)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    }
    
    // transcriptMsg is a helper used to hash messages which are not hashed when
    // they are read from, or written to, the wire. This is typically the case for
    // messages which are either not sent, or need to be hashed out of order from
    // when they are read/written.
    //
    // For most messages, the message is marshalled using their marshal method,
    // since their wire representation is idempotent. For clientHelloMsg and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// watchers is mapping from the value of trigger function that a
    	// watcher is interested into the watchers
    	watcherIdx int
    	watchers   indexedWatchers
    
    	// Defines a time budget that can be spend on waiting for not-ready watchers
    	// while dispatching event before shutting them down.
    	dispatchTimeoutBudget timeBudget
    
    	// Handling graceful termination.
    	stopLock sync.RWMutex
    	stopped  bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top