Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for nTables (1.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The following code enables JUnit Platform support in `build.gradle`:
    
    .Enabling JUnit Platform to run your tests
    ====
    include::sample[dir="snippets/testing/junitplatform-jupiter/kotlin",files="build.gradle.kts[tags=enabling-junit-platform]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		e.AfterDelete(obj, options)
    	}
    	if e.ReturnDeletedObject {
    		if e.Decorator != nil {
    			e.Decorator(obj)
    		}
    		return obj, nil
    	}
    	// Return information about the deleted object, which enables clients to
    	// verify that the object was actually deleted and not waiting for finalizers.
    	accessor, err := meta.Accessor(obj)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top