Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for platform1 (0.34 sec)

  1. configure.py

      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. .bazelrc

    build:rbe_linux_cpu --extra_execution_platforms="@sigbuild-r2.17-clang_config_platform//:platform"
    build:rbe_linux_cpu --host_platform="@sigbuild-r2.17-clang_config_platform//:platform"
    build:rbe_linux_cpu --platforms="@sigbuild-r2.17-clang_config_platform//:platform"
    # This is needed for all Clang17 builds but must not be present in GCC builds.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    					"model-core",
    					"model-groovy",
    					"persistent-cache",
    					"platform-base",
    					"platform-jvm",
    					"plugin-development",
    					"plugin-use",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_utils.h"
    #include "tensorflow/core/platform/init_main.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/util/command_line_flags.h"
    #include "tensorflow/lite/c/c_api_types.h"
    #include "tensorflow/lite/model_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	end, endOK := encodeValue(state.ctxt, endBlock, endValue)
    	if !startOK || !endOK {
    		// If someone writes a function that uses >65K values,
    		// they get incomplete debug info on 32-bit platforms.
    		return
    	}
    	if start == end {
    		if state.loggingLevel > 1 {
    			// Printf not logf so not gated by GOSSAFUNC; this should fire very rarely.
    			// TODO this fires a lot, need to figure out why.
    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. cmd/xl-storage.go

    	if pathName == "." || pathName == ".." || pathName == slashSeparator {
    		return errFileAccessDenied
    	}
    
    	// Check each path segment length is > 255 on all Unix
    	// platforms, look for this value as NAME_MAX in
    	// /usr/include/linux/limits.h
    	var count int64
    	for _, p := range pathName {
    		switch p {
    		case '/':
    			count = 0 // Reset
    		case '\\':
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    // delegated to the underlying storage).
    type Cacher struct {
    	// HighWaterMarks for performance debugging.
    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    	// See: https://golang.org/pkg/sync/atomic/ for more information
    	incomingHWM storage.HighWaterMark
    	// Incoming events that should be dispatched to watchers.
    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				opts := echo.CallOptions{
    					Address: "169.254.169.254",
    					Port:    echo.Port{ServicePort: 80},
    					Scheme:  scheme.HTTP,
    					HTTP: echo.HTTP{
    						// TODO: detect which platform?
    						Headers: headers.New().With("Metadata-Flavor", "Google").Build(),
    						Path:    "/computeMetadata/v1/instance/service-accounts/default/identity",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top