Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,177 for Missing (0.2 sec)

  1. src/cmd/compile/internal/syntax/testdata/issue43527.go

            _[A, B /* ERROR missing type constraint */ ] int
            _[A, /* ERROR missing type parameter name */ interface{}] int
            _[A, B, C /* ERROR missing type constraint */ ] int
            _[A B, C /* ERROR missing type constraint */ ] int
            _[A B, /* ERROR missing type parameter name */ interface{}] int
            _[A B, /* ERROR missing type parameter name */ interface{}, C D] int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/constdecl.go

    }
    
    // Identifier and expression arity must match.
    const _ /* ERROR "missing init expr for _" */
    const _ = 1, 2 /* ERROR "extra init expr 2" */
    
    const _ /* ERROR "missing init expr for _" */ int
    const _ int = 1, 2 /* ERROR "extra init expr 2" */
    
    const (
    	_ /* ERROR "missing init expr for _" */
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    
    	_ /* ERROR "missing init expr for _" */ int
    	_ int = 1, 2 /* ERROR "extra init expr 2" */
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingSetTest.groovy

            0 * listener._
        }
    
        def "containsAll of missing elements is tracked"() {
            when:
            def result = set.containsAll(Arrays.asList('missing', 'alsoMissing'))
    
            then:
            !result
            1 * listener.onAccess('missing')
            1 * listener.onAccess('alsoMissing')
            0 * listener._
        }
    
        def "containsAll of missing and existing elements is tracked"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/FileWalkingBenchmark.java

        File existingFile;
    
        @Param({"true", "false"})
        boolean missing;
    
        @Setup(Level.Trial)
        public void setup() throws IOException {
            this.tempDirPath = Files.createTempDirectory("file-walking");
            this.tempDirFile = tempDirPath.toFile();
    
            this.missingPath = tempDirPath.resolve("aaa-missing/bbb-missing/ccc-missing/ddd-missing/missing.txt");
            this.missingFile = missingPath.toFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    ! go get example.net/missing/subdir@v0.1.0
    stderr '^go: module example.net/missing@v0.1.0 found \(replaced by ./missing\), but does not contain package example.net/missing/subdir$'
    
    go get example.net/missing@v0.1.0
    
    
    # Getting the subdirectory should continue to fail even if the corresponding
    # module is already present in the build list.
    
    ! go get example.net/missing/subdir@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/go/parser/testdata/tparams.go2

    )
    
    // go.dev/issue/60812
    type (
    	_ [t]struct{}
    	_ [[]t]struct{}
    	_ [[t]t]struct{}
    	_ [t /* ERROR "missing type parameter name or invalid array length" */ [t]]struct{}
    	_ [t t[t], t /* ERROR "missing type parameter name" */ [t]]struct{}
    	_ [t /* ERROR "missing type parameter name" */ [t], t t[t]]struct{}
    	_ [t /* ERROR "missing type parameter name" */ [t], t[t]]struct{} // report only first error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/flagdefs_test.go

    	os.Exit(m.Run())
    }
    
    func TestPassFlagToTest(t *testing.T) {
    	wantNames := genflags.ShortTestFlags()
    
    	missing := map[string]bool{}
    	for _, name := range wantNames {
    		if !passFlagToTest[name] {
    			missing[name] = true
    		}
    	}
    	if len(missing) > 0 {
    		t.Errorf("passFlagToTest is missing entries: %v", missing)
    	}
    
    	extra := maps.Clone(passFlagToTest)
    	for _, name := range wantNames {
    		delete(extra, name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

            given:
            def repo = addRepo1()
    
            when:
            resolver.resolve(moduleComponentId, componentRequestMetaData, result)
    
            then:
            1 * localAccess.resolveComponentMetaData(moduleComponentId, componentRequestMetaData, _) >> { id, meta, result ->
                result.missing()
                result.authoritative = false
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue18747.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _ () {
    	if {} // ERROR "missing condition in if statement"
    
    	if
    	{} // ERROR "missing condition in if statement"
    
    	if ; {} // ERROR "missing condition in if statement"
    
    	if foo; {} // ERROR "missing condition in if statement"
    
    	if foo; // ERROR "missing condition in if statement"
    	{}
    
    	if foo {}
    
    	if ; foo {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 575 bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            key1       | reportedValue1  | key2           | reportedValue2 | expectedResult
            'existing' | 'existingValue' | 'other'        | 'otherValue'   | true
            'existing' | 'existingValue' | 'missing'      | null           | false
            'missing'  | null            | 'otherMissing' | null           | false
        }
    
        def "remove(#key) is tracked"() {
            when:
            def result = getMapUnderTestToWrite().remove(key)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top