Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 593 for isInitialized (0.89 sec)

  1. src/internal/cpu/cpu_arm.go

    // license that can be found in the LICENSE file.
    
    package cpu
    
    const CacheLinePadSize = 32
    
    // arm doesn't have a 'cpuid' equivalent, so we rely on HWCAP/HWCAP2.
    // These are initialized by archauxv() and should not be changed after they are
    // initialized.
    var HWCap uint
    var HWCap2 uint
    var Platform string
    
    // HWCAP/HWCAP2 bits. These are exposed by Linux and FreeBSD.
    const (
    	hwcap_VFPv4 = 1 << 16
    	hwcap_IDIVA = 1 << 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. schema/schema.go

    		namer:            namer,
    		initialized:      make(chan struct{}),
    	}
    	// When the schema initialization is completed, the channel will be closed
    	defer close(schema.initialized)
    
    	// Load exist schema cache, return if exists
    	if v, ok := cacheStore.Load(schemaCacheKey); ok {
    		s := v.(*Schema)
    		// Wait for the initialization of other goroutines to complete
    		<-s.initialized
    		return s, s.err
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/JansiEndUserIntegrationTest.groovy

        private final static String JANSI_VERSION = '1.11'
    
        @Issue("GRADLE-3573")
        def "test workers use a different version of Jansi than initialized by Gradle's native services"() {
            given:
            buildFile << basicJavaProject()
            buildFile << """
                dependencies {
                    testImplementation 'org.fusesource.jansi:jansi:$JANSI_VERSION'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 18:12:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && (mips64 || mips64le)
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 256 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_mark_initialized_variables.mlir

    // RUN: tf-opt -tf-saved-model-mark-initialized-variables-test %s | FileCheck %s
    // RUN: tf-opt -tf-saved-model-mark-initialized-variables-invalid-session-test %s | FileCheck %s --check-prefix=INVALID
    
    
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            1 * releaseLockActionExecutor.stop()
        }
    
        def "stopping is safe even if the handler was not initialized"() {
            when:
            handler.stop()
    
            then:
            noExceptionThrown()
        }
    
        def "stopping is safe even if the executor was not initialized"() {
            handler.reservePort()
    
            when:
            handler.stop()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/bucket-metadata-sys.go

    				wait() // wait to proceed to next entry.
    			}
    		}
    		t.Reset(bucketMetadataRefresh)
    	}
    }
    
    // Initialized indicates if bucket metadata sys is initialized atleast once.
    func (sys *BucketMetadataSys) Initialized() bool {
    	sys.RLock()
    	defer sys.RUnlock()
    
    	return sys.initialized
    }
    
    // Loads bucket metadata for all buckets into BucketMetadataSys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !aix && !linux && (ppc64 || ppc64le)
    
    package cpu
    
    func archInit() {
    	PPC64.IsPOWER8 = true
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 285 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && riscv64
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 243 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		hic := &headerInterceptingConn{initializableConn: testConnConstructor}
    		_, err := hic.Write([]byte(responseHeaders))
    		require.NoError(t, err)
    		assert.True(t, hic.initialized, "successfully parsed http response headers")
    		assert.Equal(t, expectedResponseHeaders, testConnConstructor.resp.Header)
    		assert.Equal(t, "101 Switching Protocols", testConnConstructor.resp.Status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top