Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 912 for illegal (0.22 sec)

  1. src/main/resources/CLMessages.properties

    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    ECL0040=IOException occurred, because {0}
    ECL0042=An illegal access was generated by {0}, because {1}
    ECL0043=The target which {0} invoked is illegal, because {1}
    ECL0044=Class not found, details are {0}
    ECL0048=The constructor of {0} for arguments({1}) not found
    ECL0049=The method({1}) of {0} not found
    ECL0050=Can not parse, because {0}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug027.go

    	}
    	expect := `hi
    0 44444
    1 3333
    2 222
    3 11
    4 0
    0 44444
    1 3333
    2 222
    3 11
    4 0
    `
    	if r != expect {
    		panic(r)
    	}
    }
    
    /*
    bug027.go:50: illegal types for operand
    	(<Element>I{}) CONV (<I>{})
    bug027.go:50: illegal types for operand
    	(<Element>I{}) CONV (<I>{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

                " Set the 'rootProject.name' or adjust the 'include' statement (see ${settingsDslUrl} for more details).")
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative) // all forbidden characters are illegal on Windows
        def "subproject names must not contain forbidden characters"() {
            given:
            createDirs("folder", "folder/name|with|pipes")
            settingsFile << "include 'folder:name|with|pipes'"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            'statement before plugin management' | 'rootProject.name = "foo"\npluginManagement { }' | "1:1: illegal content before 'pluginManagement', which can only appear as the first element in the file"
            'plugins before plugin management'   | 'plugins { }\npluginManagement { }'              | "1:1: illegal content before 'pluginManagement', which can only appear as the first element in the file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. test/func3.go

    // license that can be found in the LICENSE file.
    
    // Verify that illegal function signatures are detected.
    // Does not compile.
    
    package main
    
    type t1 int
    type t2 int
    type t3 int
    
    func f1(*t2, x t3)	// ERROR "named"
    func f2(t1, *t2, x t3)	// ERROR "named"
    func f3() (x int, *string)	// ERROR "named"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 505 bytes
    - Viewed (0)
  6. test/convert3.go

    // Does not compile.
    
    package main
    
    // everything here is legal except the ERROR line
    
    var c chan int
    var d1 chan<- int = c
    var d2 = (chan<- int)(c)
    
    var e *[4]int
    var f1 []int = e[0:]
    var f2 = []int(e[0:])
    
    var g = []int(nil)
    
    type H []int
    type J []int
    
    var h H
    var j1 J = h // ERROR "compat|illegal|cannot"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 544 bytes
    - Viewed (0)
  7. test/fixedbugs/bug172.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func f() {
    	a := true;
    	a |= a;	// ERROR "illegal.*OR|bool|expected"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 260 bytes
    - Viewed (0)
  8. test/fixedbugs/bug080.go

    package main
    
    func f1() (x int, y float64) {
    	return
    }
    
    func f2(x int, y float64) {
    	return
    }
    
    func main() {
    	f2(f1()) // this should be a legal call
    }
    
    /*
    bug080.go:12: illegal types for operand: CALL
    	(<int32>INT32)
    	({<x><int32>INT32;<y><float32>FLOAT32;})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 435 bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Broadcast without memory operand.
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	VADDPD.BCST X3, X2, K1, X1       // ERROR "illegal broadcast without memory argument"
    	// CLWB instructions:
    	CLWB BX                          // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. test/fixedbugs/bug146.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	type Slice []byte;
    	a := [...]byte{ 0 };
    	b := Slice(a[0:]);	// This should be OK.
    	c := Slice(a);		// ERROR "invalid|illegal|cannot"
    	_, _ = b, c;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 354 bytes
    - Viewed (0)
Back to top