Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for dying (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    func (tv *Timeval) Nanoseconds() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // See mixInConventionAware() for how we do this for decorated types that do not implement IConventionAware manually
                    //
                    // Doing this for all types introduces a performance penalty for types that have Provider properties, even
                    // if they don't use convention mapping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    * NodeController waits for informer sync before doing anything ([#34809](https://github.com/kubernetes/kubernetes/pull/34809), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    * AWS: Recognize ca-central-1 region ([#38410](https://github.com/kubernetes/kubernetes/pull/38410), [@justinsb](https://github.com/justinsb))
    * fix nil dereference when doing a volume type check on persistent volumes ([#39529](https://github.com/kubernetes/kubernetes/pull/39529), [@sjenning](https://github.com/sjenning))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    make one broad Fringe composed of all the Colours in due order, the violet lying on the inside of the Fringe next the Shadow, the red on the outside farthest from the Shadow, and the blue, green, and yellow, in the middle. And, in like manner, the middlemost Fringes of all the Colours lying in order, and being contiguous, make another broad Fringe composed of all the Colours; and the outmost Fringes of all the Colours lying in order, and being contiguous, make a third broad Fringe composed of all...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top