Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for crack (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

    import org.hamcrest.Matchers.equalTo
    import org.junit.Assert.assertFalse
    import org.junit.Assert.assertTrue
    import org.junit.Test
    
    
    class ConfigurationCacheProblemsSummaryTest {
    
        @Test
        fun `keeps track of unique problems upto maxCollectedProblems`() {
            val subject = ConfigurationCacheProblemsSummary(maxCollectedProblems = 2)
            assertTrue(
                "1st problem",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    	if IsToolchainProgram(progPath) {
    		progVers = goVers
    	} else {
    		progVers = info.Main.Version
    		if strings.Contains(progVers, "devel") || module.IsPseudoVersion(progVers) {
    			// We don't want to track pseudo versions, but may want to track prereleases.
    			progVers = "devel"
    		}
    	}
    
    	return goVers, progPath, progVers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * if the property has no value, or if it does not contain a mapping for the key.
         *
         * <p>The returned provider will track the value of this property and query its value when it is queried.</p>
         *
         * <p>This method is equivalent to
         *
         * <pre><code>
         *     map(m -&gt; m.get(key))
         * </code></pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

    import org.gradle.util.Path;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Used to track which configurations in other projects a given resolution depends on. This data is
     * used to mark those configurations as observed so that they cannot be mutated later.
     *
     * <strong>Do not build on-top of this visitor. If you want to track cross-project dependencies,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-task-across-generations.go

    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // The issue is that EvUserTaskEnd events don't carry the
    // task type with them, so the parser needs to track that
    // information. But if the parser just tracks the string ID
    // and not the string itself, that string ID may not be valid
    // for use in future generations.
    
    package main
    
    import (
    	"internal/trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-problems-base/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Base utilities and services to report and track configuration problems"
    
    dependencies {
        api(projects.baseServices)
        api(projects.stdlibJavaExtensions)
        api(projects.logging)
        api(projects.problemsApi)
    
        api(libs.kotlinStdlib)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

                }
                tasks.register("myTask", MyTask) {
                    // use an undeclared input so we can test --refresh-dependencies
                    // URL.text is not tracked for now; we'll have to change it once we start to track it
                    message.set(file("message").toPath().toUri().toURL().text)
                }
            """
            file("message") << "foo"
    
            when:
            configurationCacheRun "myTask"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. .gitignore

    /*/docs/src/samples/**/build
    /*/docs/src/snippets/**/build
    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    # Needed to track entry points and nullability annotations (see https://youtrack.jetbrains.com/issue/IDEA-354114 and https://youtrack.jetbrains.com/issue/IDEA-354115)
    !/.idea/misc.xml
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

            builder.firstLevelDependency(dependency.getNodeId());
            //we don't serialise the module dependencies at this stage so we need to keep track
            //of the mapping module dependency <-> resolved dependency
            modulesMap.put(dependency.getNodeId(), moduleDependency);
        }
    
        @Override
        public void done(DependencyGraphNode root) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/internal/trace/mud.go

    // functions and Dirac delta functions (which are treated as
    // degenerate uniform distributions).
    type mud struct {
    	sorted, unsorted []edge
    
    	// trackMass is the inverse cumulative sum to track as the
    	// distribution is updated.
    	trackMass float64
    	// trackBucket is the bucket in which trackMass falls. If the
    	// total mass of the distribution is < trackMass, this is
    	// len(hist).
    	trackBucket int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top