Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,382 for causing (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

    };
    
    // Quantization rewrite pattern using DQ as the root op.
    struct StableHloQuantization
        : public StableHloQuantizationBase<StableHloQuantization> {
      explicit StableHloQuantization(MLIRContext* ctx)
          : StableHloQuantizationBase<StableHloQuantization>(ctx) {}
    };
    
    // Quantization rewrite pattern using Q as the root op. This is for the
    // quantizable ops without floating-point operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/runtime/time_test.go

    	"time"
    )
    
    func TestFakeTime(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("faketime not supported on windows")
    	}
    
    	// Faketime is advanced in checkdead. External linking brings in cgo,
    	// causing checkdead not working.
    	testenv.MustInternalLink(t, false)
    
    	t.Parallel()
    
    	exe, err := buildTestProg(t, "testfaketime", "-tags=faketime")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 03:40:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsReader.java

     *
     * @since 3.3.0
     */
    public interface ToolchainsReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.toolchains.io.isStrict";
    
        /**
         * Reads the toolchains from the specified file.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                projectsConfigured(":", ":a", ":b")
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28204")
        def "access to #description delegated property value is causing a violation"() {
            given:
            settingsFile << """
                include("a")
            """
            buildKotlinFile << """
                project.extensions.extraProperties["myProperty"] = "hello"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/crypto/x509/hybrid_pool_test.go

    	}
    	if !testenv.HasExternalNetwork() {
    		t.Skip()
    	}
    	if runtime.GOOS == "windows" {
    		// NOTE(#51599): on the Windows builders we sometimes see that the state
    		// of the root pool is not fully initialized, causing an expected
    		// platform verification to fail. In part this is because Windows
    		// dynamically populates roots into its local trust store at time of
    		// use. We can attempt to prime the pool by attempting TLS connections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            return classpath.removeIf(f ->
                // Remove dependencies that are not part of the API and cause trouble when they leak.
                // 'kotlin-sam-with-receiver-compiler-plugin' clashes with 'kotlin-sam-with-receiver' causing a 'SamWithReceiverComponentRegistrar is not compatible with this version of compiler' exception
                f.getName().startsWith("kotlin-sam-with-receiver-compiler-plugin")
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/strings/builder.go

    )
    
    // A Builder is used to efficiently build a string using [Builder.Write] methods.
    // It minimizes memory copying. The zero value is ready to use.
    // Do not copy a non-zero Builder.
    type Builder struct {
    	addr *Builder // of receiver, to detect copies by value
    
    	// External users should never get direct access to this buffer, since
    	// the slice at some point will be converted to a string using unsafe, also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

     * Tests that all package-private {@code writeReplace} methods are overridden in any existing
     * subclasses. Without such overrides, optimizers might put a {@code writeReplace}-containing class
     * and its subclass in different packages, causing the serialization system to fail to invoke {@code
     * writeReplace} when serializing an instance of the subclass. For an example of this problem, see
     * b/310253115.
     */
    public class WriteReplaceOverridesTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/go/format/format.go

    // consistent formatting should execute a specific version of the gofmt binary
    // instead of using this package. That way, the formatting will be stable, and
    // the tools won't need to be recompiled each time gofmt changes.
    //
    // For example, pre-submit checks that use this package directly would behave
    // differently depending on what Go version each developer uses, causing the
    // check to be inherently fragile.
    package format
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

     *
     */
    public interface ModelReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top