Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for trackers (0.28 sec)

  1. src/net/http/request.go

    	// Trailer specifies additional headers that are sent after the request
    	// body.
    	//
    	// For server requests, the Trailer map initially contains only the
    	// trailer keys, with nil values. (The client declares which trailers it
    	// will later send.)  While the handler is reading from Body, it must
    	// not reference Trailer. After reading from Body returns EOF, Trailer
    	// can be read again and will contain non-nil values, if they were sent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When adding `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` to a map, then for each value a nested input is added, using the key as name.
    
    The type and classpath of nested inputs is tracked, too.
    This ensures that changes to the implementation of a nested input causes the build to be out of date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun receivedResponseAtMillis ()J
    	public final fun request ()Lokhttp3/Request;
    	public final fun sentRequestAtMillis ()J
    	public fun toString ()Ljava/lang/String;
    	public final fun trailers ()Lokhttp3/Headers;
    }
    
    public class okhttp3/Response$Builder {
    	public fun <init> ()V
    	public fun addHeader (Ljava/lang/String;Ljava/lang/String;)Lokhttp3/Response$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    	if len(podWorkers.podUpdates) != 0 {
    		t.Errorf("Incorrect number of open channels %v", len(podWorkers.podUpdates))
    	}
    	if len(podWorkers.podSyncStatuses) != 2 {
    		t.Errorf("Incorrect number of tracked statuses: %#v", podWorkers.podSyncStatuses)
    	}
    
    	for uid := range desiredPods {
    		pod := newNamedPod(string(uid), "ns", "name", false)
    		podWorkers.UpdatePod(UpdatePodOptions{
    			Pod:        pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/runtime/map.go

    				} else {
    					i--
    				}
    				if b.tophash[i] != emptyOne {
    					break
    				}
    			}
    		notLast:
    			h.count--
    			// Reset the hash seed to make it more difficult for attackers to
    			// repeatedly trigger hash collisions. See issue 25237.
    			if h.count == 0 {
    				h.hash0 = uint32(rand())
    			}
    			break search
    		}
    	}
    
    	if h.flags&hashWriting == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	// OriginalHostname is the unprocessed form of Hostnames; how it appeared in users' config
    	OriginalHostname string
    
    	// AttachedRoutes keeps track of how many routes are attached to this parent. This is tracked for status.
    	// Because this is mutate in the route generation, parentInfo must be passed as a pointer
    	AttachedRoutes int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    +
    If you face a problem with a community Gradle plugin, see if it is already listed at link:{gradle-issues}13490[gradle/gradle#13490] and consider reporting the issue to the plugin's issue tracker.
    +
    A good way to report such issues is by providing information such as:
    +
    * a link to this very documentation,
    * the plugin version you tried,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    			dcinfo.FreeInodes = di.Ffree
    			dcinfo.FSType = di.FSType
    			diskID, err := s.GetDiskID()
    			// Healing is 'true' when
    			// - if we found an unformatted disk (no 'format.json')
    			// - if we found healing tracker 'healing.bin'
    			dcinfo.Healing = errors.Is(err, errUnformattedDisk) || (s.Healing() != nil)
    			dcinfo.ID = diskID
    			return dcinfo, err
    		},
    	)
    
    	// Success.
    	return s, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * implementation type.
         *
         * <p>This method is provided as a convenience for tests. Otherwise they'd need to be
         * knowledgeable about all the implementation details of our type system trickery.
         */
        abstract E castForTesting(InternalEntry<K, V, ?> entry);
    
        /** Unsafely extracts the key reference queue used by this segment. */
        ReferenceQueue<K> getKeyReferenceQueueForTesting() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top