Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for interference (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

            then:
            fixture.taskCount == 1
            fixture.task(':longRunningTask').output == 'First incremental output\nSecond incremental output'
        }
    
        def "parses tasks with progress bar interference"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		// so we do all our parsing manually in Run, below.
    		// DisableFlagParsing=true provides the full set of flags passed to the kubelet in the
    		// `args` arg to Run, without Cobra's interference.
    		DisableFlagParsing: true,
    		SilenceUsage:       true,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			// initial flag parse, since we disable cobra's flag parsing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top