Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,191 for switchn (0.16 sec)

  1. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #  You can specify the handling type of procedure synonym.
        #   NONE - No handling. (default)
        #   INCLUDE - It includes procedure synonyms.
        #   SWITCH - It switches all normal procedures to procedure synonyms.
        #
        #; procedureSynonymHandlingType = NONE
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  2. src/net/error_test.go

    	if nestedErr == nil {
    		return nil
    	}
    
    	switch err := nestedErr.(type) {
    	case *OpError:
    		if err := err.isValid(); err != nil {
    			return err
    		}
    		nestedErr = err.Err
    		goto second
    	}
    	return fmt.Errorf("unexpected type on 1st nested level: %T", nestedErr)
    
    second:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	switch err := nestedErr.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    		}
    
    		t := pass.TypesInfo.Types[call.Args[argidx]].Type
    		switch t.Underlying().(type) {
    		case *types.Pointer, *types.Interface, *types.TypeParam:
    			return
    		}
    
    		switch argidx {
    		case 0:
    			pass.Reportf(call.Lparen, "call of %s passes non-pointer", fn.Name())
    		case 1:
    			pass.Reportf(call.Lparen, "call of %s passes non-pointer as second argument", fn.Name())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/gotos.go

    	goto L /* ERROR "goto L jumps into block" */
    }
    
    // switch
    
    func _() {
    L:
    	switch i {
    	case 0:
    		goto L
    	}
    }
    
    func _() {
    L:
    	switch i {
    	case 0:
    
    	default:
    		goto L
    	}
    }
    
    func _() {
    	switch i {
    	case 0:
    
    	default:
    	L:
    		goto L
    	}
    }
    
    func _() {
    	switch i {
    	case 0:
    
    	default:
    		goto L
    	L:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			break
    		}
    		iargs = append(iargs, a)
    	}
    
    	switch inst.Op {
    	case INSB, INSD, INSW, OUTSB, OUTSD, OUTSW, LOOPNE, JCXZ, JECXZ, JRCXZ, LOOP, LOOPE, MOV, XLATB:
    		if inst.Op == MOV && (inst.Opcode>>16)&0xFFFC != 0x0F20 {
    			break
    		}
    		for i, p := range inst.Prefix {
    			if p&0xFF == PrefixAddrSize {
    				inst.Prefix[i] &^= PrefixImplicit
    			}
    		}
    	}
    
    	switch inst.Op {
    	case MOV:
    		dst, _ := inst.Args[0].(Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4518.go

    	return 3, 7
    }
    
    func bogus1(d interface{}) (int, int) {
    	switch {
    	default:
    		return F(d)
    	}
    	return 0, 0
    }
    
    func bogus2() (int, int) {
    	switch {
    	default:
    		return F(3)
    	}
    	return 0, 0
    }
    
    func bogus3(d interface{}) (int, int) {
    	switch {
    	default:
    		return G()
    	}
    	return 0, 0
    }
    
    func bogus4() (int, int) {
    	switch {
    	default:
    		return G()
    	}
    	return 0, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 942 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

                }
            """
            writeBuildLogicPlugin()
            writeGreetTask "GreetTask", ORIGINAL_GREETING
            switch (kind) {
                case Kind.CHANGE_RESOURCE:
                    writeResource ""
                    break
            }
        }
    
        void applyChange() {
            switch (kind) {
                case Kind.CHANGE_SOURCE:
                    writeGreetTask "GreetTask", CHANGED_GREETING
                    break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    	MOVD	arg0+8(FP), R0
    	MOVD	arg1+16(FP), R1
    	MOVD	arg2+24(FP), R2
    	MOVD	arg3+32(FP), R3
    	JMP	racecall<>(SB)
    
    // Switches SP to g0 stack and calls (R9). Arguments already set.
    // Clobbers R19, R20.
    TEXT	racecall<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVD	g_m(g), R10
    	// Switch to g0 stack.
    	MOVD	RSP, R19	// callee-saved, preserved across the CALL
    	MOVD	R30, R20	// callee-saved, preserved across the CALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. test/fixedbugs/bug248.dir/bug3.go

    		panic("fail")
    	}
    
    	// check that type switch works.
    	// the worry is that if p0.T and p1.T have the same hash,
    	// the binary search will handle one of them incorrectly.
    	for j := 0; j < 3; j++ {
    		switch j {
    		case 0:
    			i = p0.T{}
    		case 1:
    			i = p1.T{}
    		case 2:
    			i = 3.14
    		}
    		switch i.(type) {
    		case p0.T:
    			if j != 0 {
    				println("type switch p0.T")
    				panic("fail")
    			}
    		case p1.T:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue51533.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _(x any) {
    	switch x {
    	case 0:
    		fallthrough // ERROR "fallthrough statement out of place"
    		_ = x
    	default:
    	}
    
    	switch x.(type) {
    	case int:
    		fallthrough // ERROR "cannot fallthrough in type switch"
    	default:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 394 bytes
    - Viewed (0)
Back to top