Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,111 for ONCE (1.4 sec)

  1. tensorflow/compiler/jit/flags.h

        // `enabled_for_gpu_` below.
        bool enabled_for_all_;
    
        // If true, enable Device API (PjRt) for TF GPU device. This is a helper
        // flag so that individual tests can turn on PjRt for GPU specifically.
        // Once the rollout to GPU is complete, this flag can be deprecated.
        bool enabled_for_gpu_;
    
       private:
        // Devices for which using Device API (PjRt) is allowed in the XlaLaunch op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSet.java

       * each appears first in the source iterable. This method iterates over {@code elements} only
       * once.
       *
       * <p><b>Performance note:</b> This method will sometimes recognize that the actual copy operation
       * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} should copy the data only
       * once. This reduces the expense of habitually making defensive copies at API boundaries.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec describes the desired attributes of a resource that then needs
    	// to be allocated. It can only be set once when creating the
    	// ResourceClaim.
    	Spec ResourceClaimSpec `json:"spec" protobuf:"bytes,2,name=spec"`
    
    	// Status describes whether the resource is available and with which
    	// attributes.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            then:
            testWorkerProgressListener.testWorkerProgressLoggers.isEmpty()
        }
    
        def "registers progress logger for test worker only once"() {
            def testWorkerProgressLogger = Mock(ProgressLogger)
    
            given:
            def testEvent = new TestEvent('Gradle Test Executor 1', 'org.gradle.Test1')
            def testDescriptor = createTestDescriptor(testEvent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    				// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    				w.string(f.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/controller.go

    // already watches all CRs. When there are updates, a new PushContext will be computed, which will eventually
    // call Controller.Reconcile(). Once this happens, we will inspect the current state of the world, and transform
    // gateway-api types into Istio types (Gateway/VirtualService). Future calls to Get/List will return these
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            expect:
            def result = resolve(include('TEST3'))
            result.complete
            result.files.file as List == [header1]
        }
    
        def "resolves macro include once for each definition of the macro"() {
            given:
            def includeFile1 = sourceDirectory.createFile("test1.h")
            def includeFile2 = sourceDirectory.createFile("test2.h")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. src/runtime/crash_test.go

    		if status == 0 {
    			status = 1
    		}
    	}
    
    	os.Exit(status)
    }
    
    var testprog struct {
    	sync.Mutex
    	dir    string
    	target map[string]*buildexe
    }
    
    type buildexe struct {
    	once sync.Once
    	exe  string
    	err  error
    }
    
    func runTestProg(t *testing.T, binary, name string, env ...string) string {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	testenv.MustHaveGoBuild(t)
    	t.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Response.kt

    import okhttp3.internal.http.parseChallenges
    import okio.Buffer
    
    /**
     * An HTTP response. Instances of this class are not immutable: the response body is a one-shot
     * value that may be consumed only once and then closed. All other properties are immutable.
     *
     * This class implements [Closeable]. Closing it simply closes its response body. See
     * [ResponseBody] for an explanation and examples.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    If using `--no-daemon`, it runs in the foreground after the build session.
    
    The following cleanup strategies are applied periodically (by default, once every 24 hours):
    
    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top