Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for growing (0.25 sec)

  1. src/testing/benchmark.go

    // not the sum of wall time or CPU time over each parallel goroutine.
    func (b *B) RunParallel(body func(*PB)) {
    	if b.N == 0 {
    		return // Nothing to do when probing.
    	}
    	// Calculate grain size as number of iterations that take ~100µs.
    	// 100µs is enough to amortize the overhead and provide sufficient
    	// dynamic load balancing.
    	grain := uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    	// Transient is set if the cache is transient due to an error or being a reserved bucket.
    	// This means the cache metadata will not be persisted on disk.
    	// A transient result will never be returned from the cache so knowing the list id is required.
    	Transient bool
    
    	// Versioned is this a ListObjectVersions call.
    	Versioned bool
    	// V1 listing type
    	V1 bool
    
    	// Versioning config is used for if the path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      return success();
    }
    
    // Forms clusters with ops of the same `_replication_info` attribute under a
    // block.
    //
    // For a given block, clusters are formed via grouping ops by
    // `_replication_info` attributes. For every cluster formed:
    //   1. Find associated TPUReplicateMetadata attributes with the same
    //      `_replication_info` attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

      private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    	if m := noteMarkerRx.FindStringSubmatchIndex(text); m != nil {
    		// The note body starts after the marker.
    		// We remove any formatting so that we don't
    		// get spurious line breaks/indentation when
    		// showing the TODO body.
    		body := clean(text[m[1]:])
    		if body != "" {
    			marker := text[m[2]:m[3]]
    			r.notes[marker] = append(r.notes[marker], &Note{
    				Pos:  list[0].Pos(),
    				End:  list[len(list)-1].End(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    // decide that the gofmt binary is up-to-date means computing the action ID
    // for the final link of the gofmt binary and comparing it against the
    // already-installed gofmt binary. But computing the action ID for the link
    // means knowing the content ID of main.a, which we did not keep.
    // To sidestep this problem, each binary actually stores an expanded build ID:
    //
    //	actionID(binary)/actionID(main.a)/contentID(main.a)/contentID(binary)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[lazy_configuration]]
    = Configuring Tasks Lazily
    
    Knowing when and where a particular value is configured is difficult to track as a build grows in complexity.
    Gradle provides several ways to manage this using *lazy configuration*.
    
    image::writing-tasks-4.png[]
    
    [[lazy_properties]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	LastPushContext *PushContext
    	// LastPushTime records the time of the last push. This is used in conjunction with
    	// LastPushContext; the XDS cache depends on knowing the time of the PushContext to determine if a
    	// key is stale or not.
    	LastPushTime time.Time
    }
    
    type WatchedResource = xds.WatchedResource
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    // If it is, initialize all probed plugins and replace the cache with them.
    func (pm *VolumePluginMgr) refreshProbedPlugins() {
    	events, err := pm.prober.Probe()
    
    	if err != nil {
    		klog.ErrorS(err, "Error dynamically probing plugins")
    	}
    
    	// because the probe function can return a list of valid plugins
    	// even when an error is present we still must add the plugins
    	// or they will be skipped because each event only fires once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    	name, err := libname(args, pkgs)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	return b.linkSharedAction(mode, depMode, name, a1)
    }
    
    // linkSharedAction takes a grouping action a1 corresponding to a list of built packages
    // and returns an action that links them together into a shared library with the name shlib.
    // If a1 is nil, shlib should be an absolute path to an existing shared library,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top