Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for anylit (0.37 sec)

  1. src/cmd/compile/internal/walk/complit.go

    		appendWalkStmt(init, a)
    	}
    }
    
    func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {
    	t := n.Type()
    	switch n.Op() {
    	default:
    		base.Fatalf("anylit: not lit, op=%v node=%v", n.Op(), n)
    
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, n))
    
    	case ir.OMETHEXPR:
    		n := n.(*ir.SelectorExpr)
    		anylit(n.FuncName(), var_, init)
    
    	case ir.OPTRLIT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. releasenotes/notes/remove-anyuid-openshift.yaml

    kind: feature
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/platform-setup/openshift/'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 297 bytes
    - Viewed (0)
  3. fastapi/concurrency.py

    from contextlib import asynccontextmanager as asynccontextmanager
    from typing import AsyncGenerator, ContextManager, TypeVar
    
    import anyio
    from anyio import CapacityLimiter
    from starlette.concurrency import iterate_in_threadpool as iterate_in_threadpool  # noqa
    from starlette.concurrency import run_in_threadpool as run_in_threadpool  # noqa
    from starlette.concurrency import (  # noqa
        run_until_first_complete as run_until_first_complete,
    )
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Dec 25 17:57:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/manually.md

        Она сильно помогает во время **разработки**, но **не следует** использовать её при **реальной работе** приложения.
    
    ## Hypercorn с Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 16:22:47 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.mockito.ArgumentMatchers.any;
    import static org.mockito.ArgumentMatchers.anyBoolean;
    import static org.mockito.ArgumentMatchers.anyList;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.when;
    
    class DefaultGraphBuilderTest {
        /*
        The multi-module structure in this project is displayed as follows:
    
        module-parent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/manually.md

        Sie hilft sehr während der **Entwicklung**, aber Sie sollten sie **nicht** in der **Produktion** verwenden.
    
    ## Hypercorn mit Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/topology_hints.go

    			if !mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				return
    			}
    			numMatching++
    		}
    
    		// Finally, check to see if enough available devices remain on the
    		// current NUMA node combination to satisfy the device request.
    		for d := range available {
    			if mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				numMatching++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. requirements-tests.txt

    ruff ==0.2.0
    dirty-equals ==0.6.0
    # TODO: once removing databases from tutorial, upgrade SQLAlchemy
    # probably when including SQLModel
    sqlalchemy >=1.3.18,<1.4.43
    databases[sqlite] >=0.3.2,<0.7.0
    flask >=1.1.2,<3.0.0
    anyio[trio] >=3.2.1,<4.0.0
    PyJWT==2.8.0
    pyyaml >=5.3.1,<7.0.0
    passlib[bcrypt] >=1.7.2,<2.0.0
    
    # types
    types-ujson ==5.7.0.1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 468 bytes
    - Viewed (0)
  9. docs/zh/docs/deployment/manually.md

         `--reload` 选项消耗更多资源,并且更不稳定。
    
         它在**开发**期间有很大帮助,但您**不应该**在**生产环境**中使用它。
    
    ## Hypercorn with Trio
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:39:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/tokens.go

    type LitKind uint8
    
    // TODO(gri) With the 'i' (imaginary) suffix now permitted on integer
    // and floating-point numbers, having a single ImagLit does
    // not represent the literal kind well anymore. Remove it?
    const (
    	IntLit LitKind = iota
    	FloatLit
    	ImagLit
    	RuneLit
    	StringLit
    )
    
    type Operator uint
    
    //go:generate stringer -type Operator -linecomment tokens.go
    
    const (
    	_ Operator = iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top