Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for ctxt (0.05 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (StaticLECall {callAux} (Addr {scon} (SB)) sptr (Const64 [2]) mem)
      && isSameCall(callAux, "runtime.memequal")
      && symIsRO(scon)
      && canLoadUnaligned(config)
      => (MakeResult (Eq16 (Load <typ.Int16> sptr mem) (Const16 <typ.Int16> [int16(read16(scon,0,config.ctxt.Arch.ByteOrder))])) mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		}
    		dirent = append(dirent, fi)
    	}
    	ctxt.ReadDir = func(string) ([]fs.FileInfo, error) { return dirent, nil }
    
    	if cfg.ModulesEnabled {
    		modload.ImportFromFiles(ctx, gofiles)
    	}
    
    	var err error
    	if dir == "" {
    		dir = base.Cwd()
    	}
    	dir, err = filepath.Abs(dir)
    	if err != nil {
    		base.Fatalf("%s", err)
    	}
    
    	bp, err := ctxt.ImportDir(dir, 0)
    	pkg := new(Package)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	}
    
    	gp.sched.pc = pc
    	gp.sched.sp = sp
    	gp.sched.lr = 0
    	gp.sched.ret = 0
    	gp.sched.bp = bp
    	// We need to ensure ctxt is zero, but can't have a write
    	// barrier here. However, it should always already be zero.
    	// Assert that.
    	if gp.sched.ctxt != nil {
    		badctxt()
    	}
    }
    
    // The goroutine g is about to enter a system call.
    // Record that it's not using the cpu anymore.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/dag.txt

    Guillaume Nodet <******@****.***> 1705337366 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  5. pkg/test/framework/features/allowlist.txt

    zirain <******@****.***> 1666116203 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Sterling Greene <******@****.***> 1717795469 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    }
    func testServerRequestContextCancel_ServeHTTPDone(t *testing.T, mode testMode) {
    	ctxc := make(chan context.Context, 1)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		ctx := r.Context()
    		select {
    		case <-ctx.Done():
    			t.Error("should not be Done in ServeHTTP")
    		default:
    		}
    		ctxc <- ctx
    	}))
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top