Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for overlapping (2.36 sec)

  1. 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)
  2. guava-tests/test/com/google/common/hash/HashTestUtils.java

        int numActions = 100;
        // hashcodes from non-overlapping hash computations
        HashCode expected1 = randomHash(hashFunction, new Random(1L), numActions);
        HashCode expected2 = randomHash(hashFunction, new Random(2L), numActions);
    
        // equivalent, but overlapping, computations (should produce the same results as above)
        Random random1 = new Random(1L);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. 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)
  4. pkg/proxy/endpointslicecache.go

    				}
    			}
    		}
    
    		endpointInfo := newBaseEndpointInfo(endpoint.Addresses[0], portNum, isLocal,
    			ready, serving, terminating, zoneHints)
    
    		// This logic ensures we're deduplicating potential overlapping endpoints
    		// isLocal should not vary between matching endpoints, but if it does, we
    		// favor a true value here if it exists.
    		if _, exists := endpointSet[endpointInfo.String()]; !exists || isLocal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/strings/strings.go

    	for i := 0; i < n-1; i++ {
    		_, size := utf8.DecodeRuneInString(s)
    		a[i] = s[:size]
    		s = s[size:]
    	}
    	if n > 0 {
    		a[n-1] = s
    	}
    	return a
    }
    
    // Count counts the number of non-overlapping instances of substr in s.
    // If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
    func Count(s, substr string) int {
    	// special case
    	if len(substr) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_simulation_test.go

    						Protocol:   simulation.HTTP,
    					},
    					Result: simulation.Result{
    						Error: simulation.ErrNoListener,
    					},
    				},
    			},
    		},
    		simulationTest{
    			name: "multiple overlapping services",
    			config: createGatewayWithServiceSelector("gateway", "istio-ingressgateway.istio-system.svc.cluster.local,ingress.com", `
    port:
     number: 80
     name: http-80
     protocol: HTTP
    hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            succeeds "a", "-Ptext=newtext"
    
            then:
            result.assertTasksNotSkipped(":a")
        }
    
        def "multiple tasks can generate into overlapping output directories"() {
            writeDirTransformerTask()
    
            buildFile << '''
    task a(type: DirTransformerTask) {
        inputDir = file('src/a')
        outputDir = file('build')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    	End *Event
    
    	GoroutineExecStats
    }
    
    // GoroutineExecStats contains statistics about a goroutine's execution
    // during a period of time.
    type GoroutineExecStats struct {
    	// These stats are all non-overlapping.
    	ExecTime          time.Duration
    	SchedWaitTime     time.Duration
    	BlockTimeByReason map[string]time.Duration
    	SyscallTime       time.Duration
    	SyscallBlockTime  time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/unicode/letter.go

    // code points within the set. The ranges are listed in two slices
    // to save space: a slice of 16-bit ranges and a slice of 32-bit ranges.
    // The two slices must be in sorted order and non-overlapping.
    // Also, R32 should contain only values >= 0x10000 (1<<16).
    type RangeTable struct {
    	R16         []Range16
    	R32         []Range32
    	LatinOffset int // number of entries in R16 with Hi <= MaxLatin1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/4206")
        def "cacheability for a task with overlapping outputs is OVERLAPPING_OUTPUTS"() {
            buildFile """
                task cacheable(type: Cacheable)
                task cacheableWithOverlap(type: Cacheable) {
                    outputFile = cacheable.outputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top