Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 9,783 for fromP2 (0.1 sec)

  1. src/cmd/internal/obj/s390x/objz.go

    				p.From.Name = obj.NAME_EXTERN
    				p.From.Offset = 0
    			}
    		}
    	}
    
    	// Rewrite SUB constants into ADD.
    	switch p.As {
    	case ASUBC:
    		if p.From.Type == obj.TYPE_CONST && isint32(-p.From.Offset) {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST && isint32(-p.From.Offset) {
    			p.From.Offset = -p.From.Offset
    			p.As = AADD
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedFileOrderingIntegrationTest.groovy

            outputContains("files 3: [test-lib.jar, a.jar, a-lib.jar, b.jar, b-lib.jar, c.jar, c-lib.jar, test-1.0.jar, test-1.0-from-main.jar, test-1.0-from-a.jar, test-1.0-from-c.jar, test2-1.0.jar, test3-1.0.jar]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

      namespace: foo
    spec:
      action: DENY
      rules:
      # rule[0] `from`: HTTP field, `to`: HTTP field.
      - from:
        - source:
            requestPrincipals: ["id-1"]
        to:
        - operation:
            methods: ["GET"]
      # rule[1] `from`: nil, `to`: HTTP field.
      - to:
        - operation:
            methods: ["GET"]
      # rule[2] `from`: HTTP field, `to`: nil.
      - from:
        - source:
              requestPrincipals: ["id-1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/groovy/build.gradle

        // tag::convention-callsites-from-declaration[]
        // setting convention from declaration
        @Input
        final Property<String> greeter = project.objects.property(String).convention("person1")
        // end::convention-callsites-from-declaration[]
    
        @TaskAction
        void greet() {
            println("hello, ${guest.get()}, from ${greeter.get()}")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/obj0.go

    				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
    		}
    
    		// Put >32-bit constants in memory and load them
    	case AMOVV:
    		if p.From.Type == obj.TYPE_CONST && p.From.Name == obj.NAME_NONE && p.From.Reg == 0 && int64(int32(p.From.Offset)) != p.From.Offset {
    			p.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/StageTest.groovy

            expect:
            Stage.from(1, "2") < Stage.from(1, "3")
            Stage.from(1, "4") > Stage.from(1, "3")
    
            Stage.from(1, "9") < Stage.from(2, "1")
            Stage.from(2, "1") > Stage.from(1, "9")
    
            Stage.from(1, "1") < Stage.from(1, "1a")
            Stage.from(1, "1a") > Stage.from(1, "1")
    
            Stage.from(1, "1a") < Stage.from(1, "1b")
            Stage.from(1, "1b") > Stage.from(1, "1a")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 10 06:35:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Pathconf(path string, name int) (val int, err error)
    //sys	read(fd int, p []byte) (n int, err error)
    //sys	Readlink(path string, buf []byte) (n int, err error)
    //sys	Rename(from string, to string) (err error)
    //sys	Renameat(fromfd int, from string, tofd int, to string) (err error)
    //sys	Revoke(path string) (err error)
    //sys	Rmdir(path string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/x86/ssa.go

    		switch v.Op {
    		case ssa.Op386LEAL1:
    			p.From.Scale = 1
    			if i == x86.REG_SP {
    				r, i = i, r
    			}
    		case ssa.Op386LEAL2:
    			p.From.Scale = 2
    		case ssa.Op386LEAL4:
    			p.From.Scale = 4
    		case ssa.Op386LEAL8:
    			p.From.Scale = 8
    		}
    		p.From.Type = obj.TYPE_MEM
    		p.From.Reg = r
    		p.From.Index = i
    		ssagen.AddAux(&p.From, v)
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

            int midIndex = (from + to) >>> 1;
            // Choose the median of the elements at the from, to and mid indexes,
            // and rearrange so that array[from]<=array[from+1], and
            // array[to] => array[from + 1].
    
            swap(array, midIndex, from + 1);
    
            if (array[from] > array[to]) {
              swap(array, from, to);
            }
            if (array[from + 1] > array[to]) {
              swap(array, from + 1, to);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top