Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for cpuinit (0.12 sec)

  1. src/runtime/cpuflags.go

    	offsetX86HasRDTSCP = unsafe.Offsetof(cpu.X86.HasRDTSCP)
    
    	offsetARMHasIDIVA = unsafe.Offsetof(cpu.ARM.HasIDIVA)
    
    	offsetMIPS64XHasMSA = unsafe.Offsetof(cpu.MIPS64X.HasMSA)
    )
    
    var (
    	// Set in runtime.cpuinit.
    	// TODO: deprecate these; use internal/cpu directly.
    	x86HasPOPCNT bool
    	x86HasSSE41  bool
    	x86HasFMA    bool
    
    	armHasVFPv4 bool
    
    	arm64HasATOMICS bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 810 bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	// 16 seems to provide enough amortization, but other than that it's mostly arbitrary number.
    	_GoidCacheBatch = 16
    )
    
    // cpuinit sets up CPU feature flags and calls internal/cpu.Initialize. env should be the complete
    // value of the GODEBUG environment variable.
    func cpuinit(env string) {
    	switch GOOS {
    	case "aix", "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd", "illumos", "solaris", "linux":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #ifndef CU_BOOL
      /** Boolean type for CUnit use. */
      #define CU_BOOL int
    #endif
    
    #ifndef CU_TRUE
      /** Boolean TRUE for CUnit use. */
      #define CU_TRUE 1
    #endif
    
    #ifndef CU_FALSE
      /** Boolean FALSE for CUnit use. */
      #define CU_FALSE 0
    #endif
    
    #ifndef CU_UNREFERENCED_PARAMETER
      /** Consistent approach to referencing unused parameters. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.cunit-test-suite.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 679 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2010/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2015/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2013/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 113.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/cygwin/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/mingw/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. pkg/kubelet/winstats/winstats_test.go

    	assert.Equal(t, len(actualRootInfos["/"].Stats), len(infos["/"].Stats))
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Cpu, infos["/"].Stats[0].Cpu)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].CpuInst, infos["/"].Stats[0].CpuInst)
    	assert.Equal(t, actualRootInfos["/"].Stats[0].Memory, infos["/"].Stats[0].Memory)
    }
    
    func TestWinMachineInfo(t *testing.T) {
    	c := getClient(t)
    
    	machineInfo, err := c.WinMachineInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top