Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 385 for tracking (0.32 sec)

  1. pkg/proxy/iptables/proxier.go

    }
    
    // Proxier is an iptables based proxy for connections between a localhost:lport
    // and services that provide the actual backends.
    type Proxier struct {
    	// ipFamily defines the IP family which this proxier is tracking.
    	ipFamily v1.IPFamily
    
    	// endpointsChanges and serviceChanges contains all changes to endpoints and
    	// services that happened since iptables was synced. For a single object,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    // using a delete-marker and MetaSys entries. It's used to track tiered content of a
    // deleted/overwritten version. This version is visible _only_to the scanner routine, for subsequent deletion.
    // This kind of tracking is necessary since a version's tiered content is deleted asynchronously.
    
    // Backend directory tree structure:
    // disk1/
    // └── bucket
    //     └── object
    //         ├── a192c1d5-9bd5-41fd-9a90-ab10e165398d
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    Cookies("http://firsthost.fake/nosetcookie")
    `
    	if got != want {
    		t.Errorf("Got Jar calls:\n%s\nWant:\n%s", got, want)
    	}
    }
    
    // RecordingJar keeps a log of calls made to it, without
    // tracking any cookies.
    type RecordingJar struct {
    	mu  sync.Mutex
    	log bytes.Buffer
    }
    
    func (j *RecordingJar) SetCookies(u *url.URL, cookies []*Cookie) {
    	j.logf("SetCookie(%q, %v)\n", u, cookies)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    				},
    				gracePeriod:     1,
    				deleted:         true,
    				observedRuntime: true,
    				working:         true,
    			},
    			// Once a running pod is fully terminated, we stop tracking it in history, and so it
    			// is deliberately expected not to be known outside the pod worker since the source of
    			// the pod is also not in the desired pod set.
    			expectKnownTerminated: false,
    		},
    		{
    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/malloc.go

    			//
    			// Use sysAllocOS instead of sysAlloc or persistentalloc because there's no
    			// statistic we can comfortably account for this space in. With this structure,
    			// we rely on demand paging to avoid large overheads, but tracking which memory
    			// is paged in is too expensive. Trying to account for the whole region means
    			// that it will appear like an enormous memory overhead in statistics, even though
    			// it is not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    			}
    			if oi.VersionID != "" && sz == actualSz {
    				sizeS.versions++
    			}
    			sizeS.totalSize += sz
    
    			// Skip tier accounting if object version is a delete-marker or a free-version
    			// tracking deleted transitioned objects
    			switch {
    			case oi.DeleteMarker, oi.TransitionedObject.FreeVersion:
    				continue
    			}
    			tier := oi.StorageClass
    			if tier == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Removed tracking annotation from validation and defaulting. ([#117633](https://github.com/kubernetes/kubernetes/pull/117633), [@kannon92](https://github.com/kannon92))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. src/cmd/go/internal/modload/load.go

    	test     *loadPkg
    
    	// Populated by postprocessing in (*loader).buildStacks:
    	stack *loadPkg // package importing this one in minimal import stack for this pkg
    }
    
    // loadPkgFlags is a set of flags tracking metadata about a package.
    type loadPkgFlags int8
    
    const (
    	// pkgInAll indicates that the package is in the "all" package pattern,
    	// regardless of whether we are loading the "all" package pattern.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top