Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/asm/internal/asm/testdata/duperror.s

    TEXT foo(SB), 0, $0
    	RET
    TEXT foo(SB), 0, $0 // ERROR "symbol foo redeclared"
    	RET
    
    GLOBL bar(SB), 0, $8
    GLOBL bar(SB), 0, $8 // ERROR "symbol bar redeclared"
    
    DATA bar+0(SB)/8, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 23:21:07 UTC 2022
    - 404 bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

     * execution, this might be built as a single project with many components instead.
     *
     * The project also allows for "overlapping" inputs where the build output and source files are
     * arranged in a way to force the project to include the root directory as an input.
     *
     * We may also eventually include overlapping source directories, where a single directory is used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/union.go

    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    			// a|a, a|~a, ~a|~a, and ~a|A (where under(A) == a).
    			if j := overlappingTerm(terms[:i], t); j >= 0 {
    				check.softErrorf(tlist[i], InvalidUnion, "overlapping terms %s and %s", t, terms[j])
    			}
    		}
    	}).describef(uexpr, "check term validity %s", uexpr)
    
    	return u
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/OutputSnapshotUtilTest.groovy

            collectFiles(filterOutputAfterExecution(EMPTY, previousExecution, afterExecution)) == [outputDir]
        }
    
        def "overlapping directories are not included"() {
            def outputDir = temporaryFolder.createDir("outputDir")
            outputDir.createDir("output-dir-2")
            def beforeExecution = snapshotOutput(outputDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.1K 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. src/go/types/union.go

    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    			// a|a, a|~a, ~a|~a, and ~a|A (where under(A) == a).
    			if j := overlappingTerm(terms[:i], t); j >= 0 {
    				check.softErrorf(tlist[i], InvalidUnion, "overlapping terms %s and %s", t, terms[j])
    			}
    		}
    	}).describef(uexpr, "check term validity %s", uexpr)
    
    	return u
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/BeforeExecutionState.java

         * @see AfterExecutionResult#getAfterExecutionOutputState()
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFileLocationSnapshots();
    
        /**
         * Returns overlapping outputs if they are detected.
         *
         * @see org.gradle.internal.execution.UnitOfWork#getOverlappingOutputHandling()
         */
        Optional<OverlappingOutputs> getDetectedOverlappingOutputs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top