Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 604 for illegal (0.12 sec)

  1. 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)
  2. 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)
  3. test/fixedbugs/bug062.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 main() {
    	var _ string = nil // ERROR "illegal|invalid|incompatible|cannot"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            then:
            thrown Exception
        }
    
        def "won't parse string with non-hex chars: #illegal"() {
            when:
            HashCode.fromString(illegal)
    
            then:
            thrown Exception
    
            where:
            illegal << ["abcdefgh", "-1235689", "0x123456"]
        }
    
        def "won't parse too short string: #length"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/go/token/token.go

    	SELECT
    	STRUCT
    	SWITCH
    	TYPE
    	VAR
    	keyword_end
    
    	additional_beg
    	// additional tokens, handled in an ad-hoc manner
    	TILDE
    	additional_end
    )
    
    var tokens = [...]string{
    	ILLEGAL: "ILLEGAL",
    
    	EOF:     "EOF",
    	COMMENT: "COMMENT",
    
    	IDENT:  "IDENT",
    	INT:    "INT",
    	FLOAT:  "FLOAT",
    	IMAG:   "IMAG",
    	CHAR:   "CHAR",
    	STRING: "STRING",
    
    	ADD: "+",
    	SUB: "-",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/api/InvalidUserDataException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api;
    
    /**
     * A <code>InvalidUserDataException</code> is thrown, if a user is providing illegal data for the build.
     */
    public class InvalidUserDataException extends GradleException {
        public InvalidUserDataException() {
        }
    
        public InvalidUserDataException(String message) {
            super(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/strconv/itoa_test.go

    			s := Itoa(int(test.in))
    			if s != test.out {
    				t.Errorf("Itoa(%v) = %v want %v",
    					test.in, s, test.out)
    			}
    		}
    	}
    
    	// Override when base is illegal
    	defer func() {
    		if r := recover(); r == nil {
    			t.Fatalf("expected panic due to illegal base")
    		}
    	}()
    	FormatUint(12345678, 1)
    }
    
    type uitob64Test struct {
    	in   uint64
    	base int
    	out  string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:39 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

                        holder.binaries.create("illegal", SampleBinary)
                    }
                }
    
                apply type: IllegallyMutatingComponentBinariesRules
            """
    
            when:
            fails "tasks"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    		r, w := rune(s.src[s.rdOffset]), 1
    		switch {
    		case r == 0:
    			s.error(s.offset, "illegal character NUL")
    		case r >= utf8.RuneSelf:
    			// not ASCII
    			r, w = utf8.DecodeRune(s.src[s.rdOffset:])
    			if r == utf8.RuneError && w == 1 {
    				s.error(s.offset, "illegal UTF-8 encoding")
    			} else if r == bom && s.offset > 0 {
    				s.error(s.offset, "illegal byte order mark")
    			}
    		}
    		s.rdOffset += w
    		s.ch = r
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization-no-chlo.mlir

    // RUN: tf-opt "-tfxla-verify-legalization=legalize-chlo=false" -verify-diagnostics -split-input-file %s | FileCheck %s --dump-input=fail
    // Tests the VerifyTFXLALegalization Pass, that just ensures we don't have
    // any illegal ops at the end of the pipeline. This runs with
    // legalize-chlo=false since errors can't be mixed with the legalize-chlo=True
    // version.
    
    // CHECK-LABEL: allows_chlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 694 bytes
    - Viewed (0)
Back to top