Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 529 for isLegal (0.24 sec)

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

    	MOVHU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVWU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVF	F0, F1, F2			// ERROR "illegal MOV instruction"
    	MOVD	F0, F1, F2			// ERROR "illegal MOV instruction"
    	MOV	X10, X11, X12			// ERROR "illegal MOV instruction"
    	MOVW	X10, X11, X12			// ERROR "illegal MOV instruction"
    	RORI	$64, X5, X6			// ERROR "immediate out of range 0 to 63"
    	SLLI	$64, X5, X6			// ERROR "immediate out of range 0 to 63"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen_test.cc

      ExpectErrorContains(ValidateCppIdent(" ", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("0", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(".", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(":", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("a.", ""), "illegal char");
      ExpectErrorContains(ValidateCppIdent("a:", ""), "illegal char");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/verify_quant_legalization.cc

            llvm::any_of(op->getResultTypes(), IsQuantType) ||
            IsTFUniformQuantizedOp(op) || IsMhloUniformQuantizedOp(*op)) {
          op->emitOpError("is illegal as it is a UQ op or contains uq/qint types");
          LOG(ERROR) << "Found illegal op containing uq/qint type: "
                     << op->getName().getStringRef().str();
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test/fixedbugs/bug056.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func frexp() (a int, b float64) {
    	return 1, 2.0
    }
    
    func main() {
    	a, b := frexp();
    	_, _ = a, b;
    }
    
    /*
    bug056.go:8: illegal types for operand: AS
    	(<int32>INT32)
    	(<int32>INT32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 364 bytes
    - Viewed (0)
Back to top