Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 188 for Overlapping (0.13 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	"path/filepath"
    	"plugin"
    	"strings"
    
    	"testplugin/common"
    )
    
    func init() {
    	common.X *= 5
    }
    
    // testUnnamed tests that two plugins built with .go files passed on
    // the command line do not have overlapping symbols. That is,
    // unnamed1.so/FuncInt and unnamed2.so/FuncInt should be distinct functions.
    func testUnnamed() {
    	p, err := plugin.Open("unnamed1.so")
    	if err != nil {
    		log.Fatalf(`plugin.Open("unnamed1.so"): %v`, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

            classpath.sourceDir('src/main/java').assertOutputLocation(null)
            classpath.sourceDir('src/main/resources').assertOutputLocation('out/res')
        }
    
        @ToBeFixedForConfigurationCache
        def "Overlapping default and source folder output paths are deduplicated"() {
            setup:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    
                sourceSets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    		// conflicts between user-defined CRDs
    		mergeSpec(crdSpec, s)
    	}
    
    	// The static spec has the highest priority. Resolve conflicts to prevent user-defined
    	// CRDs potentially overlapping the built-in apiextensions API
    	if err := aggregator.MergeSpecsIgnorePathConflictRenamingDefinitionsAndParameters(&specToReturn, crdSpec); err != nil {
    		return nil, err
    	}
    	return &specToReturn, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            0 * _
    
            !outputs.file.exists()
            !outputs.dir.exists()
            outputs.file.parentFile.isDirectory()
        }
    
        def "cleans everything when there are no overlapping outputs"() {
            def outputs = new WorkOutputs()
            outputs.createContents()
    
            when:
            step.execute(work, context)
            then:
            interaction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/internal/trace/gc.go

    type MMUCurve struct {
    	series []mmuSeries
    }
    
    type mmuSeries struct {
    	util []MutatorUtil
    	// sums[j] is the cumulative sum of util[:j].
    	sums []totalUtil
    	// bands summarizes util in non-overlapping bands of duration
    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    type mmuBand struct {
    	// minUtil is the minimum instantaneous mutator utilization in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/cmd/trace/regions.go

    			})
    		} else {
    			// Sort by total time by default.
    			slices.SortFunc(regions, func(a, b region) int {
    				return cmp.Compare(b.TotalTime, a.TotalTime)
    			})
    		}
    
    		// Write down all the non-overlapping stats and sort them.
    		allNonOverlappingStats := make([]string, 0, len(validNonOverlappingStats))
    		for name := range validNonOverlappingStats {
    			allNonOverlappingStats = append(allNonOverlappingStats, name)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typeset.go

    	// of a method I.m's Func Object of an interface I is the same as that of
    	// the method m in an interface that embeds interface I. On the other hand,
    	// if a method is embedded via multiple overlapping embedded interfaces, we
    	// don't provide a guarantee which "original m" got chosen for the embedding
    	// interface. See also go.dev/issue/34421.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            firstBarrier.await();
            secondBarrier.await();
          }
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          // use a bunch of threads so that weird overlapping schedules are more likely to happen.
          return Executors.newScheduledThreadPool(10);
        }
    
        @Override
        protected Scheduler scheduler() {
          return new CustomScheduler() {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            firstBarrier.await();
            secondBarrier.await();
          }
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          // use a bunch of threads so that weird overlapping schedules are more likely to happen.
          return Executors.newScheduledThreadPool(10);
        }
    
        @Override
        protected Scheduler scheduler() {
          return new CustomScheduler() {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/nn_grad_test.cc

      // Force consistent pooling regions for unit testing.
      auto y = FractionalAvgPool(
          scope_, x, {1, 1.2, 1.9, 1},
          FractionalAvgPool::Deterministic(true).Overlapping(true).Seed(1).Seed2(
              2));
      TensorShape y_shape({1, 2, 3, 1});
      RunTest(x, x_shape, y.output, y_shape);
    }
    
    TEST_F(NNGradTest, FractionalMaxPoolGradHelper) {
      TensorShape x_shape({1, 3, 7, 1});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
Back to top