Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 912 for illegal (0.23 sec)

  1. test/solitaire.go

    package main
    
    const N = 11 + 1 // length of a board row (+1 for newline)
    
    // The board must be surrounded by 2 illegal fields in each direction
    // so that move() doesn't need to check the board boundaries. Periods
    // represent illegal fields, ● are pegs, and ○ are holes.
    var board = []rune(
    	`...........
    ...........
    ....●●●....
    ....●●●....
    ..●●●●●●●..
    ..●●●○●●●..
    ..●●●●●●●..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  2. pkg/util/coverage/coverage_disabled.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package coverage
    
    // InitCoverage is illegal when not running with coverage.
    func InitCoverage(name string) {
    	panic("Called InitCoverage when not built with coverage instrumentation.")
    }
    
    // FlushCoverage is a no-op when not running with coverage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 888 bytes
    - Viewed (0)
  3. 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)
  4. src/internal/types/testdata/check/shifts.go

    		p = 1<<s == 1<<33  // illegal if ints are 32bits in size: 1 has type int, but 1<<33 overflows int
    		u = 1.0 /* ERROR "must be integer" */ <<s         // illegal: 1.0 has type float64, cannot shift
    		u1 = 1.0 /* ERROR "must be integer" */ <<s != 0   // illegal: 1.0 has type float64, cannot shift
    		u2 = 1 /* ERROR "must be integer" */ <<s != 1.0   // illegal: 1 has type float64, cannot shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

        if (JavaVersion.current().isJava9Compatible) {
            //allow ProjectBuilder to inject legacy types into the system classloader
            jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            jvmArgs("--illegal-access=deny")
        }
        useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:32:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/syscall/errors_plan9.go

    	// what package os and others expect.
    	EACCES       = NewError("access permission denied")
    	EAFNOSUPPORT = NewError("address family not supported by protocol")
    	ESPIPE       = NewError("illegal seek")
    )
    
    // Notes
    const (
    	SIGABRT = Note("abort")
    	SIGALRM = Note("alarm")
    	SIGHUP  = Note("hangup")
    	SIGINT  = Note("interrupt")
    	SIGKILL = Note("kill")
    	SIGTERM = Note("interrupt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 22 13:31:24 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue13268.go

    	// compile and test output
    	cmd := exec.Command("go", "tool", "compile", f.Name())
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected cmd/compile to fail")
    	}
    	if strings.HasPrefix(string(out), "illegal UTF-8 sequence") {
    		log.Fatalf("error %q not found", out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 984 bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_generic.go

    // license that can be found in the LICENSE file.
    
    // Avoid IndexByte and IndexByteString on Plan 9 because it uses
    // SSE instructions on x86 machines, and those are classified as
    // floating point instructions, which are illegal in a note handler.
    
    //go:build !386 && (!amd64 || plan9) && !s390x && !arm && !arm64 && !loong64 && !ppc64 && !ppc64le && !mips && !mipsle && !mips64 && !mips64le && !riscv64 && !wasm
    
    package bytealg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:30:15 UTC 2023
    - 776 bytes
    - Viewed (0)
  9. operator/pkg/validate/validate_test.go

      global:
        proxy:
          includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
          excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
    
    `,
    		},
    		{
    			desc: "BadTag",
    			yamlStr: `
    hub: ?illegal-tag!
    `,
    			wantErrs: makeErrors([]string{`invalid value Hub: ?illegal-tag!`}),
    		},
    		{
    			desc: "BadHub",
    			yamlStr: `
    hub: docker.io:tag/istio
    `,
    			wantErrs: makeErrors([]string{`invalid value Hub: docker.io:tag/istio`}),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/EvaluationFailureMessageGenerator.kt

            DocumentCheckFailureReason.PluginManagementBlockOrderViolated -> "illegal content before 'pluginManagement', which can only appear as the first element in the file"
            DocumentCheckFailureReason.PluginsBlockOrderViolated -> "illegal content before 'plugins', which can only be preceded by 'pluginManagement'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top