Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for from1 (0.07 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            formatter.node(getSimpleName());
            NodeState from = this;
            int depth = 0;
            do {
                from = getFromNode(from);
                if (from != null) {
                    formatter.startChildren();
                    formatter.node(from.getSimpleName());
                    depth++;
                }
            } while (from != null && !(from instanceof RootNode));
            for (int i = 0; i < depth; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    		}
    		o1 = c.olrr(int(p.From.Offset), int(p.From.Reg), int(p.To.Reg), int(p.Scond))
    		if p.As == AMOVBU {
    			o1 |= 1 << 22
    		}
    
    	case 60: /* movb R(R),R -> ldrsb indexed */
    		if p.From.Reg == 0 {
    			c.ctxt.Diag("source operand is not a memory address: %v", p)
    			break
    		}
    		if p.From.Offset&(^0xf) != 0 {
    			c.ctxt.Diag("bad shift: %v", p)
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		// objects, try to read them from the libgcc file.
    		any := false
    		undefs, froms := ctxt.loader.UndefinedRelocTargets(1)
    		if len(undefs) > 0 {
    			any = true
    			if ctxt.Debugvlog > 1 {
    				ctxt.Logf("loadlib: first unresolved is %s [%d] from %s [%d]\n",
    					ctxt.loader.SymName(undefs[0]), undefs[0],
    					ctxt.loader.SymName(froms[0]), froms[0])
    			}
    		}
    		if any {
    			if *flagLibGCC == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. fastapi/__init__.py

    from .param_functions import File as File
    from .param_functions import Form as Form
    from .param_functions import Header as Header
    from .param_functions import Path as Path
    from .param_functions import Query as Query
    from .param_functions import Security as Security
    from .requests import Request as Request
    from .responses import Response as Response
    from .routing import APIRouter as APIRouter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. fastapi/security/__init__.py

    from .api_key import APIKeyCookie as APIKeyCookie
    from .api_key import APIKeyHeader as APIKeyHeader
    from .api_key import APIKeyQuery as APIKeyQuery
    from .http import HTTPAuthorizationCredentials as HTTPAuthorizationCredentials
    from .http import HTTPBasic as HTTPBasic
    from .http import HTTPBasicCredentials as HTTPBasicCredentials
    from .http import HTTPBearer as HTTPBearer
    from .http import HTTPDigest as HTTPDigest
    from .oauth2 import OAuth2 as OAuth2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Dec 20 18:50:00 UTC 2020
    - 881 bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    	q.As = AMOVD
    	q.From.Type = obj.TYPE_MEM
    	q.From.Sym = symtoc
    	q.From.Name = obj.NAME_TOCREF
    	q.To.Type = obj.TYPE_REG
    	q.To.Reg = REGTMP
    
    	q = obj.Appendp(q, c.newprog)
    	q.As = p.As
    	q.From = p.From
    	q.To = p.To
    	if p.From.Name != obj.NAME_NONE {
    		q.From.Type = obj.TYPE_MEM
    		q.From.Reg = REGTMP
    		q.From.Name = obj.NAME_NONE
    		q.From.Sym = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/obj.go

    			f64 := p.From.Val.(float64)
    			if math.Float64bits(f64) == 0 {
    				p.As = AMOVV
    				p.From.Type = obj.TYPE_REG
    				p.From.Reg = REGZERO
    				break
    			}
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    	}
    
    	// Rewrite SUB constants into ADD.
    	switch p.As {
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    	switch p.As {
    	case AVMOVS:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = c.ctxt.Int32Sym(p.From.Offset)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    
    	case AVMOVD:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = c.ctxt.Int64Sym(p.From.Offset)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    
    	case AVMOVQ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. clause/limit_test.go

    			"SELECT * FROM `users` LIMIT ?",
    			[]interface{}{limit0},
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Limit{Offset: 20}},
    			"SELECT * FROM `users` OFFSET ?",
    			[]interface{}{20},
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Limit{Offset: 20}, clause.Limit{Offset: 30}},
    			"SELECT * FROM `users` OFFSET ?",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Feb 06 02:54:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/single-policy-in.yaml

      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - from:
            - source:
                principals: ["rule[0]-from[0]-principal[1]", "rule[0]-from[0]-principal[2]"]
                requestPrincipals: ["rule[0]-from[0]-requestPrincipal[1]", "rule[0]-from[0]-requestPrincipal[2]"]
                namespaces: ["rule[0]-from[0]-ns[1]", "rule[0]-from[0]-ns[2]"]
                ipBlocks: ["10.0.0.1", "10.0.0.2"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top