Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 810 for platform1 (0.45 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    So, **avoid publishing custom variants** if they are for internal use only.
    ====
    
    [[targeting-different-platforms]]
    == Targeting different platforms
    
    It is common for a library to target different platforms.
    In the Java ecosystem, we often see different artifacts for the same library, distinguished by a different _classifier_.
    A typical example is Guava, which is published as this:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

    import org.gradle.util.GradleVersion;
    import org.junit.platform.engine.ConfigurationParameters;
    import org.junit.platform.engine.DiscoveryFilter;
    import org.junit.platform.engine.DiscoverySelector;
    import org.junit.platform.engine.EngineDiscoveryListener;
    import org.junit.platform.engine.EngineDiscoveryRequest;
    import org.junit.platform.engine.ExecutionRequest;
    import org.junit.platform.engine.TestDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    #include "tsl/platform/protobuf.h"  // IWYU pragma: keep
    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::stablehlo::quantization::Method;
    using ::stablehlo::quantization::QuantizableUnit;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    // go run mksysnum.go /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/sys/syscall.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && darwin
    
    package unix
    
    // Deprecated: Use libSystem wrappers instead of direct syscalls.
    const (
    	SYS_SYSCALL                        = 0
    	SYS_EXIT                           = 1
    	SYS_FORK                           = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

    class JUnitPlatformIntegrationTest extends JUnitPlatformIntegrationSpec {
    
        def 'can work with junit-platform-runner'() {
            given:
            buildFile << """
            dependencies {
                testImplementation 'org.junit.platform:junit-platform-runner:1.0.3'
            }
            """
            createSimpleJupiterTest()
    
            expect:
            succeeds('test')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinAnnotationsResolverFactory
    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProviderFactory
    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinGlobalModificationService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

        _stablehlo_module_attrs = {}, _quantization_method = "weight_only_ptq { }",
        device = "", dim_args_spec = [], disabled_checks = [],
        has_token_input_output = false, module = "", platforms = [],
        version = 5 : i64
      } : (tensor<1x3x2x3xf32>, tensor<2x3x3x2xf32>) -> tensor<1x2x2x2xf32>
      return %0 : tensor<1x2x2x2xf32>
    }
    
    // CHECK-LABEL: func.func @qdq_for_conv_weight_empty
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/ld_test.go

    	_, err = testenv.Command(t, exe, "version").CombinedOutput()
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestWindowsBuildmodeCSharedASLR(t *testing.T) {
    	platform := fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH)
    	switch platform {
    	case "windows/amd64", "windows/386":
    	default:
    		t.Skip("skipping windows amd64/386 only test")
    	}
    
    	testenv.MustHaveCGO(t)
    
    	t.Run("aslr", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import org.gradle.internal.time.Clock;
    import org.junit.platform.engine.TestExecutionResult;
    import org.junit.platform.engine.support.descriptor.ClassSource;
    import org.junit.platform.engine.support.descriptor.MethodSource;
    import org.junit.platform.launcher.TestExecutionListener;
    import org.junit.platform.launcher.TestIdentifier;
    import org.junit.platform.launcher.TestPlan;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/fingerprinting.cc

    #include "tensorflow/core/graph/regularization/util.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/file_system_helper.h"
    #include "tensorflow/core/platform/fingerprint.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/protobuf.h"  // IWYU pragma: keep
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top