Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for isLegal (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

        "Counts the number of ops that has qint types" /*metric description*/,
        "op_name" /*metric label*/);
    
    // Returns wether a type is illegal. Here we consider TF qint types illegal.
    // See pass description in passes.td for more info about how illegal types are
    // treated in this pass.
    bool IsIllegalType(Type type) {
      return IsTFQintType(getElementTypeOrSelf(type));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64error.s

    	LDADDALD	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALW	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALH	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALB	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDD	R5, (R6), RSP                                    // ERROR "illegal combination"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	pos int
    	lit string
    	err string
    }{
    	{"\a", token.ILLEGAL, 0, "", "illegal character U+0007"},
    	{`#`, token.ILLEGAL, 0, "", "illegal character U+0023 '#'"},
    	{`…`, token.ILLEGAL, 0, "", "illegal character U+2026 '…'"},
    	{"..", token.PERIOD, 0, "", ""}, // two periods, not invalid token (issue #28112)
    	{`' '`, token.CHAR, 0, `' '`, ""},
    	{`''`, token.CHAR, 0, `''`, "illegal rune literal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    		return nil, fmt.Errorf("illegal version string %q", str)
    	}
    
    	v := &Version{
    		components: make([]uint, len(components)),
    		semver:     semver,
    	}
    	for i, comp := range components {
    		if (i == 0 || semver) && strings.HasPrefix(comp, "0") && comp != "0" {
    			return nil, fmt.Errorf("illegal zero-prefixed version component %q in %q", comp, str)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                            .getConfigProperties()
                            .get("aether.priority.WagonTransporterFactory"));
            properties.remove("maven.resolver.transport");
    
            // illegal
            properties.setProperty("maven.resolver.transport", "illegal");
            request.setSystemProperties(properties);
            IllegalArgumentException exception = assertThrowsExactly(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register pair")
    				return
    			}
    			a.Type = obj.TYPE_REGREG
    			a.Offset = int64(r2)
    			// Nothing may follow
    			return
    		}
    		if p.arch.Family == sys.PPC64 {
    			// Special form for PPC64: (R1+R2); alias for (R1)(R2).
    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register+register")
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            failure.assertThatCause(containsString("Only Project and Settings build scripts can contain plugins {} blocks"))
            includesLinkToUserguide()
        }
    
        def "illegal syntax in plugins block - #code"() {
            when:
            buildScript("""plugins {\n$code\n}""")
    
            then:
            fails "help"
            failure.assertHasLineNumber lineNumber
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top