Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 810 for platform1 (0.52 sec)

  1. hack/lib/util.sh

      local -r lookfor="$1"
      local -r platform="$2"
      local locations=(
        "${KUBE_ROOT}/_output/bin/${lookfor}"
        "${KUBE_ROOT}/_output/dockerized/bin/${platform}/${lookfor}"
        "${KUBE_ROOT}/_output/local/bin/${platform}/${lookfor}"
        "${KUBE_ROOT}/platforms/${platform}/${lookfor}"
      )
    
      # if we're looking for the host platform, add local non-platform-qualified search paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

        this.connectionType = mode.second
    
        if (connectionType == H2) {
          platform.assumeHttp2Support()
        }
    
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        server = MockWebServer()
        server.serverSocketFactory =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      }
      std::vector<std::string> platforms;
      for (auto attr : op.getPlatforms().getAsRange<StringAttr>()) {
        platforms.push_back(attr.getValue().str());
      }
      TF_ASSIGN_OR_RETURN(
          auto loader,
          tensorflow::XlaCallModuleLoader::Create(
              context, static_cast<int>(op.getVersion()), op.getModule().str(),
              std::move(disabled_checks), std::move(platforms),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

    #include "tensorflow/core/ir/types/dialect.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tsl/platform/protobuf.h"  // IWYU pragma: keep
    
    namespace mlir::quant {
    
    using ::stablehlo::quantization::Method;
    using ::tsl::protobuf::TextFormat;
    
    // Default version number for native serialization.
    constexpr int64_t kDefaultVersion = 9;
    // Default platform for XlaCallModuleOp.
    constexpr StringRef kPlatformCpu = "CPU";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tsl/platform/protobuf.h"  // IWYU pragma: keep
    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant {
    namespace {
    
    using ::stablehlo::quantization::Method;
    using ::testing::HasSubstr;
    using ::testing::NotNull;
    using ::testing::SizeIs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    Sometimes we want to add _more variants_ to or modify _existing variants_ of an existing component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. src/runtime/runtime.go

    	// must have happened-before.
    	if panicking.Load() > 0 {
    		return ^uintptr(0)
    	}
    	return old
    }
    
    // auxv is populated on relevant platforms but defined here for all platforms
    // so x/sys/cpu can assume the getAuxv symbol exists without keeping its list
    // of auxv-using GOOS build tags in sync.
    //
    // It contains an even number of elements, (tag, value) pairs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

            testParseOriginal(codePoint, codePointString, encoding, component)
            testParseAlreadyEncoded(codePoint, encoding, component)
    
            val platform = urlComponentEncodingTesterJvmPlatform(component)
            platform.test(codePoint, codePointString, encoding, component)
          }
        }
    
      private fun testParseAlreadyEncoded(
        codePoint: Int,
        encoding: Encoding,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

          }
    
          if (platform != null) {
            Platform.resetForTests(platform)
          } else {
            Platform.resetForTests()
          }
    
          if (requiredPlatformName != null) {
            System.err.println("Running with ${Platform.get().javaClass.simpleName}")
          }
        }
    
        fun resetPlatform() {
          if (platform != null) {
            Platform.resetForTests()
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

    import net.rubygrapefruit.platform.Native;
    import net.rubygrapefruit.platform.NativeException;
    import net.rubygrapefruit.platform.NativeIntegrationUnavailableException;
    import net.rubygrapefruit.platform.Process;
    import net.rubygrapefruit.platform.ProcessLauncher;
    import net.rubygrapefruit.platform.SystemInfo;
    import net.rubygrapefruit.platform.WindowsRegistry;
    import net.rubygrapefruit.platform.file.FileEvents;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top