Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for waiters (0.3 sec)

  1. pkg/kubelet/kubelet_pods.go

    		m          = make(map[string]string)
    	)
    
    	// Get all service resources from the master (via a cache),
    	// and populate them into service environment variables.
    	if kl.serviceLister == nil {
    		// Kubelets without masters (e.g. plain GCE ContainerVM) don't set env vars.
    		return m, nil
    	}
    	services, err := kl.serviceLister.List(labels.Everything())
    	if err != nil {
    		return m, fmt.Errorf("failed to list services when setting up env vars")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // from the initial chunk of output.
    //
    // The Writers are wired together like:
    //
    //  1. *response (the ResponseWriter) ->
    //  2. (*response).w, a [*bufio.Writer] of bufferBeforeChunkingSize bytes ->
    //  3. chunkWriter.Writer (whose writeHeader finalizes Content-Length/Type)
    //     and which writes the chunk headers, if needed ->
    //  4. conn.bufw, a *bufio.Writer of default (4kB) bytes, writing to ->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    //   - removing an element (only by the caller who added it)
    //   - taking (get + delete) a random element
    //
    // We previously used a map for this but the take of a random element
    // was expensive, making mapiters. This type avoids a map entirely
    // and just uses a slice.
    type connRequestSet struct {
    	// s are the elements in the set.
    	s []connRequestAndIndex
    }
    
    type connRequestAndIndex struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/reflect/value.go

    		mapiternext(&it)
    	}
    	return a[:i]
    }
    
    // hiter's structure matches runtime.hiter's structure.
    // Having a clone here allows us to embed a map iterator
    // inside type MapIter so that MapIters can be re-used
    // without doing any allocations.
    type hiter struct {
    	key         unsafe.Pointer
    	elem        unsafe.Pointer
    	t           unsafe.Pointer
    	h           unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    					ExpiryLCConfig: &configStr,
    					UpdatedAt:      time.Now(),
    				})
    				if err != nil {
    					return errSRBucketMetaError(err)
    				}
    			}
    		}
    	}
    
    	// Order matters from now on how the information is
    	// synced to remote sites.
    
    	// Policies should be synced first.
    	{
    		// Replicate IAM policies on local to all peers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    and get as far asunder as the quantity of Water in which they float, will allow? And does not this Endeavour imply that they have a repulsive Force by which they fly from one another, or at least, that they attract the Water more strongly than they do one another? For as all things ascend in Water which are less attracted than Water, by the gravitating Power of the Earth; so all the Particles of Salt which float in Water, and are less attracted than Water by any one Particle of Salt, must recede from...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top