Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for loc (0.4 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	Registers RegisterSet
    
    	StackOffset
    }
    
    func (loc VarLoc) absent() bool {
    	return loc.Registers == 0 && !loc.onStack()
    }
    
    func (loc VarLoc) intersect(other VarLoc) VarLoc {
    	if !loc.onStack() || !other.onStack() || loc.StackOffset != other.StackOffset {
    		loc.StackOffset = 0
    	}
    	loc.Registers &= other.Registers
    	return loc
    }
    
    var BlockStart = &Value{
    	ID:  -10000,
    	Op:  OpInvalid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    		// to be overwritten and the cycle to proceed.
    		d := dsts[0]
    		loc := d.loc
    		vid := e.contents[loc].vid
    		c := e.contents[loc].c
    		r := e.findRegFor(c.Type)
    		if e.s.f.pass.debug > regDebug {
    			fmt.Printf("breaking cycle with v%d in %s:%s\n", vid, loc, c)
    		}
    		e.erase(r)
    		pos := d.pos.WithNotStmt()
    		if _, isReg := loc.(*Register); isReg {
    			c = e.p.NewValue1(pos, OpCopy, c.Type, c)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		} else if n < 0 {
    			break // continuing the line can't help, and it will only make errors worse
    		}
    
    		loc := fmt.Sprintf("%s%s.rules:%d", arch.name, suff, ruleLineno)
    		for _, rule2 := range expandOr(rule) {
    			r := Rule{Rule: rule2, Loc: loc}
    			if rawop := strings.Split(rule2, " ")[0][1:]; isBlock(rawop, arch) {
    				blockrules[rawop] = append(blockrules[rawop], r)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  4. tests/tests_test.go

    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	postgresDSN  = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai"
    	sqlserverDSN = "sqlserver://gorm:LoremIpsum86@localhost:9930?database=gorm"
    	tidbDSN      = "root:@tcp(localhost:9940)/test?charset=utf8&parseTime=True&loc=Local"
    )
    
    func init() {
    	var err error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

        @Override
        protected final FileEntry open () throws CIFSException {
            SmbResourceLocator loc = this.getParent().getLocator();
            String unc = loc.getUNCPath();
            String p = loc.getURL().getPath();
            if ( p.lastIndexOf('/') != ( p.length() - 1 ) ) {
                throw new SmbException(loc.getURL() + " directory must end with '/'");
            }
            if ( unc.lastIndexOf('\\') != ( unc.length() - 1 ) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  6. tests/gorm_test.go

    package tests_test
    
    import (
    	"testing"
    
    	"gorm.io/driver/mysql"
    
    	"gorm.io/gorm"
    )
    
    func TestOpen(t *testing.T) {
    	dsn := "gorm:gorm@tcp(localhost:9910)/gorm?loc=Asia%2FHongKong" // invalid loc
    	_, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
    	if err == nil {
    		t.Fatalf("should returns error but got nil")
    	}
    }
    
    func TestReturningWithNullToZeroValues(t *testing.T) {
    	dialect := DB.Dialector.Name()
    	switch dialect {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jun 01 07:22:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                buf.append("<url>").append('\n');
                buf.append("<loc>http://localhost:7070/index.html</loc>").append('\n');
                buf.append("<loc>http://localhost:7070/file").append(count).append("-1.html").append("</loc>").append('\n');
                buf.append("</url>").append('\n');
                buf.append("</urlset>").append('\n');
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/SessionTest.java

        @Test
        public void transportReuseSimple () throws CIFSException {
            CIFSContext ctx = withTestNTLMCredentials(getContext());
            String loc = getTestShareURL();
            try ( SmbResource f1 = ctx.get(loc) ) {
                f1.exists();
                try ( SmbResource f2 = ctx.get(loc) ) {
                    f2.exists();
                    connectionMatches(f1, f2);
                }
            }
        }
    
    
        @Test
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. src/mdo/model-v3.vm

        }
    
          #end
        #end
        #if ( $locationTracking )
        public InputLocation getLocation(Object key) {
            ${packageModelV4}.InputLocation loc = getDelegate().getLocation(key);
            return loc != null ? new InputLocation(loc) : null;
        }
    
        public void setLocation(Object key, InputLocation location) {
            update(${packageModelV4}.${class.name}.newBuilder(getDelegate(), true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

        }
    
        @Test
        void testStrictToolchainsParseException() throws Exception {
            Location loc = mock(Location.class);
            when(loc.getLineNumber()).thenReturn(4);
            when(loc.getColumnNumber()).thenReturn(2);
            XMLStreamException parseException = new XMLStreamException("MESSAGE", loc);
            doThrow(new XmlReaderException("MESSAGE", getLocation(parseException), parseException))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top