Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for isLegal (0.14 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = bidiIndex[o]
    		c2 := s[2]
    		if c2 < 0x80 || 0xC0 <= c2 {
    			return 0, 2 // Illegal UTF-8: not a continuation byte.
    		}
    		o = uint32(i)<<6 + uint32(c2)
    		i = bidiIndex[o]
    		c3 := s[3]
    		if c3 < 0x80 || 0xC0 <= c3 {
    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/tables15.0.0.go

    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = caseIndex[o]
    		c2 := s[2]
    		if c2 < 0x80 || 0xC0 <= c2 {
    			return 0, 2 // Illegal UTF-8: not a continuation byte.
    		}
    		o = uint32(i)<<6 + uint32(c2)
    		i = caseIndex[o]
    		c3 := s[3]
    		if c3 < 0x80 || 0xC0 <= c3 {
    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 106.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    					bytereg(&p.To, &p.Tt)
    				}
    
    			case P32: // 32 bit but illegal if 64-bit mode
    				if ctxt.Arch.Family == sys.AMD64 {
    					ctxt.Diag("asmins: illegal in 64-bit mode: %v", p)
    				}
    
    			case Py: // 64-bit only, no prefix
    				if ctxt.Arch.Family != sys.AMD64 {
    					ctxt.Diag("asmins: illegal in %d-bit mode: %v", ctxt.Arch.RegSize*8, p)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://myworkgroup/angus/ &lt;-- ILLEGAL </code></td><td>
     * Despite the hierarchial relationship between workgroups, servers, and
     * filesystems this example is not valid.
     * </td></tr>
     *
     * <tr><td width="20%">
     * <code>smb1://server/share/path/to/dir &lt;-- ILLEGAL </code></td><td>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    			c.ctxt.Diag("illegal FPSCR/CR field number\n%v", p)
    		}
    		o1 = AOP_RRR(OP_MCRFS, ((uint32(p.To.Reg) & 7) << 2), ((0 & 7) << 2), 0)
    
    	case 77: /* syscall $scon, syscall Rx */
    		if p.From.Type == obj.TYPE_CONST {
    			if p.From.Offset > BIG || p.From.Offset < -BIG {
    				c.ctxt.Diag("illegal syscall, sysnum too large: %v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_LOGIN_FAILURE = "{errors.login.failure}";
    
        /** The key of the message: Please retry because of illegal transition. */
        public static final String ERRORS_APP_ILLEGAL_TRANSITION = "{errors.app.illegal.transition}";
    
        /** The key of the message: others might be updated, so retry. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    		if p.From.Offset > 255 || p.From.Offset < 1 {
    			c.ctxt.Diag("illegal system call; system call number out of range: %v", p)
    			zE(op_TRAP2, asm) // trap always
    		} else {
    			zI(op_SVC, uint32(p.From.Offset), asm)
    		}
    
    	case 78: // undef
    		// "An instruction consisting entirely of binary 0s is guaranteed
    		// always to be an illegal instruction."
    		*asm = append(*asm, 0, 0, 0, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation_test.go

    					ParameterNotFoundAction: ptr(admissionregistration.DenyAction),
    				},
    				ValidationActions: []admissionregistration.ValidationAction{admissionregistration.ValidationAction("illegal")},
    			},
    		},
    		expectedError: `Unsupported value: "illegal": supported values: "Audit", "Deny", "Warn"`,
    	}, {
    		name: "paramRef selector must not be set when name is set",
    		config: &admissionregistration.ValidatingAdmissionPolicyBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	SIGKILL = Signal(0x9)
    	SIGSEGV = Signal(0xb)
    	SIGPIPE = Signal(0xd)
    	SIGALRM = Signal(0xe)
    	SIGTERM = Signal(0xf)
    )
    
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/breakpoint trap",
    	6:  "aborted",
    	7:  "bus error",
    	8:  "floating point exception",
    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	if pod.Status.Phase == v1.PodFailed || pod.Status.Phase == v1.PodSucceeded {
    		// API server shows terminal phase; transitions are not allowed
    		if s.Phase != pod.Status.Phase {
    			klog.ErrorS(nil, "Pod attempted illegal phase transition", "pod", klog.KObj(pod), "originalStatusPhase", pod.Status.Phase, "apiStatusPhase", s.Phase, "apiStatus", s)
    			// Force back to phase from the API server
    			s.Phase = pod.Status.Phase
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top