Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for overlapping (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                        .collect(Collectors.toList());
                    if (!matching.isEmpty()) {
                        LOGGER.debug("Filtered out {} from results for overlapping match with {}", matching, otherVersionListPattern);
                        remaining.removeAll(matching);
                    }
                }
            }
            return remaining;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. src/go/types/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.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf_test.go

    	// This test case inspired by issue 67261, in which the linker
    	// produces a set of sections for -buildmode=pie that confuse the
    	// "strip" command, due to overlapping extents. The test first
    	// verifies that we don't have any overlapping PROGBITS/DYNAMIC
    	// sections, then runs "strip" on the resulting binary.
    
    	dir := t.TempDir()
    	src := filepath.Join(dir, "e.go")
    	binFile := filepath.Join(dir, "e.exe")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                        println 'do something'
                    }
                }
            """
    
            expect:
            succeeds(":third-build:sub:doSomething")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            setup:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_test.go

    	// Test initial state
    	testEndpoints("10.0.0.53", "outbound|53||overlapping.cluster.local", adsc, t)
    
    	s.Discovery.Push(&model.PushRequest{
    		Full: true,
    		ConfigsUpdated: sets.New(model.ConfigKey{
    			Kind: kind.ServiceEntry,
    			Name: "overlapping.cluster.local",
    		}),
    	})
    	_, _ = adsc.Wait(5 * time.Second)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.VirtualServiceIneffectiveMatch, "VirtualService non-method-get"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-single-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-two-matches"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-mathes-with-different-methods"},
    		},
    	},
    	{
    		name: "host defined in virtualservice not found in the gateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/template.go

    		key := v[i]
    		if i+1 >= lenv {
    			dict[key] = ""
    			continue
    		}
    		dict[key] = v[i+1]
    	}
    	return dict
    }
    
    // Merge maps merges multiple maps. Latter maps take precedence over previous maps on overlapping fields
    func mergeMaps(maps ...map[string]string) map[string]string {
    	if len(maps) == 0 {
    		return nil
    	}
    	res := make(map[string]string, len(maps[0]))
    	for _, m := range maps {
    		for k, v := range m {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top