Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for nTables (0.12 sec)

  1. src/runtime/mgcscavenge.go

    	apply := func(x uint64, c uint64) uint64 {
    		// The technique used it here is derived from
    		// https://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
    		// and extended for more than just bytes (like nibbles
    		// and uint16s) by using an appropriate constant.
    		//
    		// To summarize the technique, quoting from that page:
    		// "[It] works by first zeroing the high bits of the [8]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    func getListObjectsV2URL(endPoint, bucketName, prefix, maxKeys, fetchOwner, encodingType, delimiter string) string {
    	queryValue := url.Values{}
    	queryValue.Set("list-type", "2") // Enables list objects V2 URL.
    	if maxKeys != "" {
    		queryValue.Set("max-keys", maxKeys)
    	}
    	if fetchOwner != "" {
    		queryValue.Set("fetch-owner", fetchOwner)
    	}
    	if encodingType != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    // previously approximated value of startState for this block.  After
    // the first call, subsequent calls can only shrink startState.
    //
    // Passing forLocationLists=true enables additional side-effects that
    // are necessary for building location lists but superfluous while still
    // iterating to an answer.
    //
    // If previousBlock is non-nil, it registers changes vs. that block's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,Deployment
    
    // DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for
    // more information.
    // Deployment enables declarative updates for Pods and ReplicaSets.
    type Deployment struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

     ** adds <<kotlin_dsl#sec:kotlin_compiler_arguments, Kotlin compiler arguments>>,
     ** registers the link:https://kotlinlang.org/docs/sam-with-receiver-plugin.html[SAM-with-receiver Kotlin compiler plugin].
     * Enables support for <<custom_plugins#sec:precompile_script_plugin,precompiled script plugins>>.
    
    .Avoid specifying a version for the `kotlin-dsl` plugin
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "GTnoov", controls: 1}, // 'GT' but without honoring overflow
    		{name: "GEnoov", controls: 1}, // 'GE' but without honoring overflow
    
    		// JUMPTABLE implements jump tables.
    		// Aux is the symbol (an *obj.LSym) for the jump table.
    		// control[0] is the index into the jump table.
    		// control[1] is the address of the jump table (the address of the symbol stored in Aux).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	if q.end-q.start == 0 {
    		return *new(T), false
    	}
    	elem := &q.buf[q.start%len(q.buf)]
    	value := *elem
    	*elem = *new(T) // Clear the entry before returning, so we don't hold onto old tables.
    	q.start++
    	return value, true
    }
    
    // makeEvent creates an Event from the provided information.
    //
    // It's just a convenience function; it's always OK to construct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		end := pAligned + size
    		endLen := (p + size + align) - end
    		if endLen > 0 {
    			sysFreeOS(unsafe.Pointer(end), endLen)
    		}
    		return unsafe.Pointer(pAligned), size
    	}
    }
    
    // enableMetadataHugePages enables huge pages for various sources of heap metadata.
    //
    // A note on latency: for sufficiently small heaps (<10s of GiB) this function will take constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      llvm::SetVector<Operation*> forward_pass_ops;
      llvm::SetVector<Operation*> backward_pass_ops;
    
      // Find all ops that we know compose the embedding forward and backward pass.
      // These ops are only tagged if one enables the
      // `pipeline_execution_with_tensor_core` flag in the mid-level API.
      WalkResult walk_result = module.walk([&](Operation* op) -> WalkResult {
        if (op->hasAttr(kEmbeddingPipelining)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/stableFeatureFlag/groovy",files="settings.gradle[]"]
    ====
    
    The `STABLE_CONFIGURATION_CACHE` feature flag enables the following:
    
    Undeclared shared build service usage::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top