Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for tracking (0.22 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true" -cse | FileCheck %s
    // RUN: tf-opt %s -tfl-prepare-quantize="quantize-signed=true post-training-quantize=true legacy-float-scale=true" -cse| FileCheck --check-prefix=Legacy %s
    
    // CHECK-LABEL: QuantizeLstmCellInput
    func.func @QuantizeLstmCellInput(%arg0: tensor<1x28x28xf32>) -> tensor<1x28x20xf32> {
        %cst_2 = "tfl.no_value"() {value = unit} : () -> none
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.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. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[tar_tree_no_backing_file]]
    ==== TAR trees from resources without backing files
    
    It is possible to create TAR trees from arbitrary resources.
    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Instead, convert the resource to a file and use `project.tarTree()` on the file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. 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)
  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