Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for swiftc (0.13 sec)

  1. src/time/format.go

    				err = errBad
    				break
    			}
    			p, value = value[0:2], value[2:]
    			switch p {
    			case "PM":
    				pmSet = true
    			case "AM":
    				amSet = true
    			default:
    				err = errBad
    			}
    		case stdpm:
    			if len(value) < 2 {
    				err = errBad
    				break
    			}
    			p, value = value[0:2], value[2:]
    			switch p {
    			case "pm":
    				pmSet = true
    			case "am":
    				amSet = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setResultCollapsed(final boolean value) {
            setSystemPropertyAsBoolean(Constants.RESULT_COLLAPSED_PROPERTY, value);
        }
    
        default boolean isResultCollapsed() {
            return switch (getFesenType()) {
            case Constants.FESEN_TYPE_CLOUD, Constants.FESEN_TYPE_AWS -> false;
            default -> getSystemPropertyAsBoolean(Constants.RESULT_COLLAPSED_PROPERTY, false);
            };
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    					old.umax = old.umin
    					if int64(old.umin) >= 0 {
    						old.min, old.max = int64(old.umin), int64(old.umin)
    					}
    				}
    			}
    		}
    		lim := noLimit
    		switch d {
    		case signed:
    			c := w.AuxInt
    			switch r {
    			case lt:
    				lim.max = c - 1
    			case lt | eq:
    				lim.max = c
    			case gt | eq:
    				lim.min = c
    			case gt:
    				lim.min = c + 1
    			case lt | gt:
    				lim = old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// shifts
    		{name: "SLL", argLength: 2, reg: gp21, asm: "LSL"},                        // arg0 << arg1, shift amount is mod 64
    		{name: "SLLconst", argLength: 1, reg: gp11, asm: "LSL", aux: "Int64"},     // arg0 << auxInt, auxInt should be in the range 0 to 63.
    		{name: "SRL", argLength: 2, reg: gp21, asm: "LSR"},                        // arg0 >> arg1, unsigned, shift amount is mod 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	f, err := splitQuoted(action)
    	if err != nil {
    		t.Fatal("invalid test recipe:", err)
    	}
    	if len(f) > 0 {
    		action = f[0]
    		args = f[1:]
    	}
    
    	// TODO: Clean up/simplify this switch statement.
    	switch action {
    	case "compile", "compiledir", "build", "builddir", "buildrundir", "run", "buildrun", "runoutput", "rundir", "runindir", "asmcheck":
    		// nothing to do
    	case "errorcheckandrundir":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

        }
    
        @Override
        public void process(final HttpServletRequest request, final HttpServletResponse response, final FilterChain chain)
                throws IOException, ServletException {
            switch (getFormatType(request)) {
            case SEARCH:
                processSearchRequest(request, response, chain);
                break;
            case LABEL:
                processLabelRequest(request, response, chain);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    	if err != nil {
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    
    	err = obj.AbortMultipartUpload(context.Background(), bucket, "\\", res.UploadID, opts)
    	if err != nil {
    		switch err.(type) {
    		case InvalidUploadID:
    			t.Fatalf("%s: New Multipart upload failed to create uuid file.", instanceType)
    		default:
    			t.Fatalf(err.Error())
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/arm.s

    	SLL	R5, R6, R7           // 1675a0e1
    	SLL.S	R5, R6, R7           // 1675b0e1
    	SLL	R5, R7               // 1775a0e1
    	SLL.S	R5, R7               // 1775b0e1
    
    // Ops with zero shifts should encode as left shifts
    	ADD	R0<<0, R1, R2	     // 002081e0
    	ADD	R0>>0, R1, R2	     // 002081e0
    	ADD	R0->0, R1, R2	     // 002081e0
    	ADD	R0@>0, R1, R2	     // 002081e0
    	MOVW	R0<<0(R1), R2        // 002091e7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	on   bool // -v is set in some form
    	json bool // -v=test2json is set, to make output better for test2json
    }
    
    func (*chattyFlag) IsBoolFlag() bool { return true }
    
    func (f *chattyFlag) Set(arg string) error {
    	switch arg {
    	default:
    		return fmt.Errorf("invalid flag -test.v=%s", arg)
    	case "true", "test2json":
    		f.on = true
    		f.json = arg == "test2json"
    	case "false":
    		f.on = false
    		f.json = false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top