Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for overlapping (0.52 sec)

  1. 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/features/experimental.go

    		"If enabled, istiod will persist the oldest first heuristic for subtly conflicting traffic policy selection"+
    			"(such as with overlapping wildcard hosts)").Get()
    
    	Enable100ContinueHeaders = env.Register("ENABLE_100_CONTINUE_HEADERS", true,
    		"If enabled, istiod will proxy 100-continue headers as is").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            then:
            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("project 'sub' not found in project ':other-build'.")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top