Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 492 for SIMPLE (0.14 sec)

  1. src/runtime/traceregion.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple not-in-heap bump-pointer traceRegion allocator.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // traceRegionAlloc is a thread-safe region allocator.
    // It holds a linked list of traceRegionAllocBlock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

            the given namespace(s), or if no namespaces are given, within the global
            namespace.
          gen_test: If True, also generate a cc_test rule that builds a simple
            test and benchmark.
          gen_benchmark: If True, also generate a binary with a simple benchmark.
            Unlike the output of gen_test, this benchmark can be run on android.
          gen_compiler_log: If True, dumps XLA:CPU debug output to a log file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/leaderelection_test.go

    	key := i.revision
    	switch i.comp {
    	case "location":
    		if i.remote {
    			key = remoteIstiodPrefix + key
    		}
    		return LocationPrioritizedComparison, key
    	case "simple":
    		return SimpleRevisionComparison, key
    	default:
    		panic("unknown comparison type")
    	}
    }
    
    // TestPrioritizationCycles
    func TestPrioritizationCycles(t *testing.T) {
    	cases := []instance{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import javax.annotation.CheckReturnValue;
    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/cpuprof.go

    // held at the time of the signal, nor can it use substantial amounts
    // of stack.
    //
    //go:nowritebarrierrec
    func (p *cpuProfile) add(tagPtr *unsafe.Pointer, stk []uintptr) {
    	// Simple cas-lock to coordinate with setcpuprofilerate.
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. maven-resolver-provider/pom.xml

          <groupId>org.mockito</groupId>
          <artifactId>mockito-core</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-simple</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

    import org.gradle.internal.declarativedsl.parsing.ParseTestUtil.Parser.parseAsTopLevelBlock
    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object DomTest {
        @Test
        fun `converts a simple language tree to document`() {
            val tree = parseAsTopLevelBlock(
                """
                myFun {
                    a = 1
                    b = f("x", z.f("y"))
                    c = true
                    nested {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    [[implemention_plugins]]
    = Understanding Implementation Options for Plugins
    
    The choice between script, precompiled script, or binary plugins depends on your specific requirements and preferences.
    
    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/pkgspecial.go

    func LookupPkgSpecial(pkgPath string) PkgSpecial {
    	pkgSpecialsOnce.Do(func() {
    		// Construct pkgSpecials from various package lists. This lets us use
    		// more flexible logic, while keeping the final map simple, and avoids
    		// the init-time cost of a map.
    		pkgSpecials = make(map[string]PkgSpecial)
    		set := func(elt string, f func(*PkgSpecial)) {
    			s := pkgSpecials[elt]
    			f(&s)
    			pkgSpecials[elt] = s
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top