Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 650 for opform (0.17 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	rel.Off = int32(c.pc)
    	rel.Siz = 8
    	rel.Sym = s
    	rel.Add = d
    	if c.ctxt.Flag_shared {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER_TOCREL
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_TOCREL_DS
    		}
    
    	} else {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_DS
    		}
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     */
    package org.codelibs.fess.app.web.go;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class GoForm {
        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/ajax/form.html

    FORM...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 5 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/universe.go

    	okfor[ir.OMOD] = okforand[:]
    	okfor[ir.OMUL] = okforarith[:]
    	okfor[ir.ONE] = okforeq[:]
    	okfor[ir.OOR] = okforand[:]
    	okfor[ir.OOROR] = okforbool[:]
    	okfor[ir.OSUB] = okforarith[:]
    	okfor[ir.OXOR] = okforand[:]
    	okfor[ir.OLSH] = okforand[:]
    	okfor[ir.ORSH] = okforand[:]
    
    	// unary
    	okfor[ir.OBITNOT] = okforand[:]
    	okfor[ir.ONEG] = okforarith[:]
    	okfor[ir.ONOT] = okforbool[:]
    	okfor[ir.OPLUS] = okforarith[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sccp.go

    		OpRsh16Ux64, OpLsh8x64, OpRsh8x64, OpRsh8Ux64,
    		// safety check
    		OpIsInBounds, OpIsSliceInBounds,
    		// bit
    		OpAnd8, OpAnd16, OpAnd32, OpAnd64,
    		OpOr8, OpOr16, OpOr32, OpOr64,
    		OpXor8, OpXor16, OpXor32, OpXor64:
    		return true
    	default:
    		return false
    	}
    }
    
    func (t *worklist) getLatticeCell(val *Value) lattice {
    	if !possibleConst(val) {
    		// they are always worst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_doc_path.txt

    [GOOS:plan9] env path=''
    
    go doc p.X
    
    -- go.mod --
    module example
    
    go 1.19
    
    require example.com/p v0.1.0
    
    replace example.com/p => ./pfork
    -- example.go --
    package example
    
    import _ "example.com/p"
    -- pfork/go.mod --
    module example.com/p
    
    go 1.19
    -- pfork/p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 537 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    		inst.SuffixEnc = ui_extn[1]
    	}
    	for i, iform := range instFormats {
    		if ui&iform.Mask != iform.Value {
    			continue
    		}
    		if ui&iform.DontCare != 0 {
    			if debugDecode {
    				log.Printf("Decode(%#x): unused bit is 1 for Op %s", ui, iform.Op)
    			}
    			// to match GNU objdump (libopcodes), we ignore don't care bits
    		}
    		for i, argfield := range iform.Args {
    			if argfield == nil {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      ASSERT_TRUE(ParseFile(&current_parser, current_filename, current_contents));
      // Check that the schemas conform and fail if they don't
      auto err = current_parser.ConformTo(base_parser);
      if (!err.empty()) {
        fprintf(stderr,
                "Schemas don't conform:\n%s\n"
                "In other words some change you made means that new parsers can't"
                "parse old files.\n",
                err.c_str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # source artifacts in different parent directories.)
    
    [short] skip 'copies the cmd/go binary'
    [!symlink] skip 'tests symlink-specific behavior'
    [GOOS:darwin] skip 'Lstat on darwin does not conform to POSIX pathname resolution; see #59586'
    [GOOS:ios] skip 'Lstat on ios does not conform to POSIX pathname resolution; see #59586'
    
    # Ensure that the relative path to $WORK/lib/goroot/src from $PWD is a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/RenderingUtilsTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal
    
    import spock.lang.Specification
    
    class RenderingUtilsTest extends Specification {
        def "oxford comma"() {
            when:
            def render = RenderingUtils.oxfordListOf(items, "and")
    
            then:
            render == result
    
            where:
            items               | result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top