Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for interference (0.23 sec)

  1. src/cmd/go/testdata/script/cgo_stale.txt

    # cached with the new flag, but not installed to GOROOT.
    # It has no install target, and thus is never stale.
    
    env GOCACHE=$WORK/cache  # Use a fresh cache to avoid interference between runs.
    
    go build -x .
    stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    # After runtime/cgo has been rebuilt and cached, it should not be rebuilt again.
    
    go build -x .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 888 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

        def setup() {
            def quietPeriod = OperatingSystem.current().isMacOsX() ? 2000 : 250
            waitAtEndOfBuildForQuietPeriod(quietPeriod)
        }
    
        @UnsupportedWithConfigurationCache(because = "Spock interceptor interference")
        def "should trigger rebuild when java source file is changed during build execution"() {
            given:
            def inputFile = file("src/main/java/Thing.java")
            inputFile << "class Thing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                    }
                }
            """
    
            when:
            server.expectConcurrent("log1", "log2", "log3")
            executer.withArgument("--parallel")
            // run build in another process to avoid interference from logging from test fixtures
            result = executer.withTasks("log").start().waitForFinish()
    
            then:
            result.groupedOutput.taskCount == 3
            if (errorsShouldAppearOnStdout()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            createJarWithProperties("a/a/thing.jar")
            addIsCachedCheck()
            addIsCachedCheck("a")
            addIsCachedCheck("a/a")
    
            // Add this to make the hierarchy unique, avoiding interference with the numbers from previous builds
            file("build.gradle") << """
                buildscript {
                    dependencies { classpath files("thing.jar") }
                }
            """
    
            run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        // our test by setting a static field. We are changing the field in the parallel version of FRQ
        // and each test creates its own one of those, so there is no test interference here.
        Class<?> sepFrqSystemLoaderC =
            sepLoader.loadClass(FinalizableReferenceQueue.SystemLoader.class.getName());
        Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pkg/cache/cache_test.go

    		{Set, "X", "12", false, Stats{Misses: 1, Writes: 1}},
    		{Get, "X", "12", true, Stats{Misses: 1, Writes: 1, Hits: 1}},
    		{Get, "X", "12", true, Stats{Misses: 1, Writes: 1, Hits: 2}},
    
    		// check interference between get/set
    		{Get, "Y", "", false, Stats{Misses: 2, Writes: 1, Hits: 2}},
    		{Set, "X", "23", false, Stats{Misses: 2, Writes: 2, Hits: 2}},
    		{Get, "X", "23", true, Stats{Misses: 2, Writes: 2, Hits: 3}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. src/time/sleep_test.go

    	gmp := runtime.GOMAXPROCS(0)
    	if gmp < 2 || runtime.NumCPU() < gmp {
    		b.Skip("skipping with GOMAXPROCS < 2 or NumCPU < GOMAXPROCS")
    	}
    
    	// allocate memory now to avoid GC interference later.
    	timerCount := gmp - 1
    	stats := make([]struct {
    		sum   float64
    		max   Duration
    		count int64
    		_     [5]int64 // cache line padding
    	}, timerCount)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    			}
    			if v.Op == OpStoreReg {
    				s.values[v.Args[0].ID].spill = v
    			}
    		}
    	}
    
    	// Compute liveness info for values needing a slot.
    	s.computeLive(spillLive)
    
    	// Build interference graph among values needing a slot.
    	s.buildInterferenceGraph()
    }
    
    func (s *stackAllocState) stackalloc() {
    	f := s.f
    
    	// Build map from values to their names, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Striped.java

      }
    
      private static class PaddedLock extends ReentrantLock {
        /*
         * Padding from 40 into 64 bytes, same size as cache line. Might be beneficial to add a fourth
         * long here, to minimize chance of interference between consecutive locks, but I couldn't
         * observe any benefit from that.
         */
        long unused1;
        long unused2;
        long unused3;
    
        PaddedLock() {
          super(false);
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Striped.java

      }
    
      private static class PaddedLock extends ReentrantLock {
        /*
         * Padding from 40 into 64 bytes, same size as cache line. Might be beneficial to add a fourth
         * long here, to minimize chance of interference between consecutive locks, but I couldn't
         * observe any benefit from that.
         */
        long unused1;
        long unused2;
        long unused3;
    
        PaddedLock() {
          super(false);
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top