Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,820 for causing (0.25 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

        enum SharedScriptFileType {
            SHARED_BUILDFILE,
            SHARED_SCRIPTPLUGIN
        }
    
        @Issue(['GRADLE-3526', 'GRADLE-3553'])
        @LeaksFileHandles
        def 'apply the same script file causing different buildscript classpaths in different projects #sharedScriptFileType'(SharedScriptFileType sharedScriptFileType) {
            given:
            def subprojectNames = ['project1', 'project2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

     *
     */
    public interface MetadataReader {
    
        /**
         * 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.artifact.repository.metadata.io.isStrict";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # Verify that our symlink shenanigans don't prevent cmd/go from finding its
    # GOROOT using os.Executable.
    #
    # To do so, we copy the actual cmd/go executable — which is implemented as the
    # cmd/go test binary instead of the original $GOROOT/bin/go, which may be
    # arbitrarily stale — into the bin subdirectory of the fake GOROOT, causing
    # os.Executable to report a path in that directory.
    
    mkdir $WORK/lib/goroot/bin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top