Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Overlapping (0.24 sec)

  1. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    				makeServiceCIDR("overlapping", "192.168.0.0/24", "2001:db2::/64"),
    				makeServiceCIDR("overlapping2", "192.168.0.0/26", "2001:db2::/96"),
    				makeServiceCIDR("unrelated", "10.0.0.0/24", ""),
    				makeServiceCIDR("unrelated2", "10.0.0.0/16", ""),
    			},
    			ip:   makeIPAddress("192.168.0.23"),
    			want: []string{defaultservicecidr.DefaultServiceCIDRName, "overlapping", "overlapping2"},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                    delete second
                }
            """
            return [":first", file("build/overlap/first.txt"),
                    ":second", file("build/overlap/second.txt")]
        }
    
        def "overlapping output directory with first, second then first, second"() {
            def (String first, TestFile firstOutput,
            String second, TestFile secondOutput) = useOverlappingOutputDirectories()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/cmd/trace/pprof.go

    			delete(tracking, id)
    
    			overlapping := pprofOverlappingDuration(gToIntervals, id, interval{startEv.Time(), ev.Time()})
    			if overlapping > 0 {
    				rec := stacks.getOrAdd(startEv.Stack())
    				rec.Count++
    				rec.Time += overlapping
    			}
    		}
    		return stacks.profile(), nil
    	}
    }
    
    // pprofOverlappingDuration returns the overlapping duration between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache_test.go

    					&BaseEndpointInfo{ip: "10.0.2.3", port: 80, endpoint: "10.0.2.3:80", isLocal: false, ready: true, serving: true, terminating: false},
    				},
    			},
    		},
    		// 2 slices, with some overlapping endpoints, result should be a union
    		// of the 2.
    		"2 overlapping slices, same port": {
    			namespacedName: types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			endpointSlices: []*discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableRangeSet.java

              Range<C> nextRange = peekingItr.peek();
              if (range.isConnected(nextRange)) {
                checkArgument(
                    range.intersection(nextRange).isEmpty(),
                    "Overlapping ranges not permitted but found %s overlapping %s",
                    range,
                    nextRange);
                range = range.span(peekingItr.next());
              } else {
                break;
              }
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/telemetry/selector.go

    )
    
    // SelectorAnalyzer validates, per namespace, that:
    // * telemetry resources that define a workload selector match at least one pod
    // * there aren't multiple telemetry resources that select overlapping pods
    type SelectorAnalyzer struct{}
    
    var _ analysis.Analyzer = &SelectorAnalyzer{}
    
    // Metadata implements Analyzer
    func (a *SelectorAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            withWatchFs().run ":incremental", "-DoutputDir=output1"
            then:
            executedAndNotSkipped(":incremental")
    
            when:
            file("build/output2/overlapping.txt").text = "overlapping"
            waitForChangesToBePickedUp()
            withWatchFs().run ":incremental", "-DoutputDir=output2"
            then:
            executedAndNotSkipped(":incremental")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

              Range<C> nextRange = peekingItr.peek();
              if (range.isConnected(nextRange)) {
                checkArgument(
                    range.intersection(nextRange).isEmpty(),
                    "Overlapping ranges not permitted but found %s overlapping %s",
                    range,
                    nextRange);
                range = range.span(peekingItr.next());
              } else {
                break;
              }
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/index/suffixarray/suffixarray.go

    				}
    			} else {
    				for i := range result {
    					result[i] = int(matches.int64[i])
    				}
    			}
    		}
    	}
    	return
    }
    
    // FindAllIndex returns a sorted list of non-overlapping matches of the
    // regular expression r, where a match is a pair of indices specifying
    // the matched slice of x.Bytes(). If n < 0, all matches are returned
    // in successive order. Otherwise, at most n matches are returned and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecSubclassingIntegrationTest.groovy

                }
            """
    
            when:
            run("run")
    
            then:
            outputContains("Run app!")
            outputDoesNotContain("Cannot resolve which method to invoke for [null] due to overlapping prototypes between")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top