Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for dying (0.05 sec)

  1. src/reflect/value.go

    		// Either flagIndir is set and v.ptr points at array,
    		// or flagIndir is not set and v.ptr is the actual array data.
    		// In the former case, we want v.ptr + offset.
    		// In the latter case, we must be doing Index(0), so offset = 0,
    		// so v.ptr + offset is still the correct address.
    		val := add(v.ptr, offset, "same as &v[i], i < tt.len")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			if customBlockVolumeMapper, ok := blockVolumeMapper.(volume.CustomBlockVolumeMapper); ok {
    				resizeOptions.DeviceStagePath = customBlockVolumeMapper.GetStagingPath()
    			}
    		}
    
    		// if we are doing online expansion then volume is already published
    		resizeDone, eventErr, detailedErr = og.doOnlineExpansion(volumeToMount, actualStateOfWorld, resizeOptions)
    		if eventErr != nil || detailedErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	}
    
    	// Append remaining service env vars.
    	for k, v := range serviceEnv {
    		// Accesses apiserver+Pods.
    		// So, the master may set service env vars, or kubelet may.  In case both are doing
    		// it, we skip the key from the kubelet-generated ones so we don't have duplicate
    		// env vars.
    		// TODO: remove this next line once all platforms use apiserver+Pods.
    		if _, present := tmpEnv[k]; !present {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	tcs.mu.Lock()
    	defer tcs.mu.Unlock()
    	for i := 4; i >= 0; i-- {
    		for i, c := range tcs.list {
    			if tcs.closed[c] {
    				continue
    			}
    			if i != 0 {
    				// TODO(bcmills): What is the Sleep here doing, and why is this
    				// Unlock/Sleep/Lock cycle needed at all?
    				tcs.mu.Unlock()
    				time.Sleep(50 * time.Millisecond)
    				tcs.mu.Lock()
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    func (c *Conn) close(err error) error {
    	if !c.done.CompareAndSwap(false, true) {
    		return ErrConnDone
    	}
    
    	// Lock around releasing the driver connection
    	// to ensure all queries have been stopped before doing so.
    	c.closemu.Lock()
    	defer c.closemu.Unlock()
    
    	c.dc.releaseConn(err)
    	c.dc = nil
    	c.db = nil
    	return err
    }
    
    // Close returns the connection to the connection pool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	if u, err := urlpkg.Parse(url); err == nil {
    		// If url was relative, make its path absolute by
    		// combining with request path.
    		// The client would probably do this for us,
    		// but doing it ourselves is more reliable.
    		// See RFC 7231, section 7.1.2
    		if u.Scheme == "" && u.Host == "" {
    			oldpath := r.URL.Path
    			if oldpath == "" { // should not happen, but avoid a crash if it does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      create-etcd-certs "${MASTER_NAME}"
      create-etcd-apiserver-certs "etcd-${MASTER_NAME}" "${MASTER_NAME}"
    
      if [[ "$(get-num-nodes)" -ge "50" ]]; then
        # We block on master creation for large clusters to avoid doing too much
        # unnecessary work in case master start-up fails (like creation of nodes).
        create-master-instance "${MASTER_RESERVED_IP}" "${MASTER_INTERNAL_IP}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			// came back into the cluster. So it gets routed to all endpoints,
    			// not just local ones. In reality, if the packet actually left
    			// the cluster, it would have to get masqueraded, but since we can
    			// avoid doing that in the short-circuit case, and not masquerading
    			// is more useful, we avoid masquerading.
    			output: "10.180.0.2:80, 10.180.1.2:80",
    			masq:   false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top