Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for overlapping (0.15 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. tensorflow/cc/gradients/nn_grad.cc

      bool overlapping;
      TF_RETURN_IF_ERROR(
          GetNodeAttr(op.output(0).node()->attrs(), "overlapping", &overlapping));
      auto dx = internal::FractionalAvgPoolGrad(
          scope, Shape(scope, op.input(0), Shape::OutType(DT_INT64)),
          grad_inputs[0], op.output(1), op.output(2),
          internal::FractionalAvgPoolGrad::Overlapping(overlapping));
      grad_outputs->push_back(dx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    public class OutputSnapshotUtil {
    
        /**
         * Finds outputs that are still present since the last execution when overlapping outputs are present.
         *
         * Note: when there are no overlapping outputs, all outputs currently existing in the output locations
         * are considered outputs of the work.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            skipped(taskWithSources.taskPath)
        }
    
        def "the output directory is not deleted if there are overlapping outputs"() {
            def taskWithSources = new TaskWithSources()
            taskWithSources.createInputs()
            def overlappingOutputFile = file("${taskWithSources.outputDir}/overlapping.txt")
            buildFile << taskWithSources.buildScript
            buildFile << """
                task taskWithOverlap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

            return true;
        }
    
        /**
         * Whether overlapping outputs should be allowed or ignored.
         */
        default OverlappingOutputHandling getOverlappingOutputHandling() {
            return OverlappingOutputHandling.IGNORE_OVERLAPS;
        }
    
        enum OverlappingOutputHandling {
            /**
             * Overlapping outputs are detected and handled.
             */
            DETECT_OVERLAPS,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top