Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for dying (0.16 sec)

  1. src/cmd/go/internal/load/pkg.go

    			}
    			p.Incomplete = true
    			p.Error.setPos(importPos)
    		}
    	}
    
    	// Checked on every import because the rules depend on the code doing the importing.
    	if perr := disallowInternal(ctx, srcDir, parent, parentPath, p, stk); perr != nil {
    		perr.setPos(importPos)
    		return p, perr
    	}
    	if mode&ResolveImport != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    //    Upper bytes are junk.
    //  - Floating-point types live in the low natural slot of an sse2 register.
    //    Unused portions are junk.
    //  - We do not use AH,BH,CH,DH registers.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    //  - Unused portions of AuxInt (or the Val portion of ValAndOff) are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top