Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 425 for froms (0.06 sec)

  1. 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)
  2. src/cmd/internal/obj/loong64/asm.go

    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 = OP_RRR(c.oprrr(p.As), uint32(p.From.Reg), uint32(r), uint32(p.To.Reg))
    
    	case 33: // fabs fr1, fr3
    		o1 = OP_RRR(c.oprrr(p.As), uint32(0), uint32(p.From.Reg), uint32(p.To.Reg))
    
    	case 34: // mov $con,fr
    		v := c.regoff(&p.From)
    		a := AADDU
    		if o.from1 == C_ANDCON {
    			a = AOR
    		}
    		o1 = OP_12IRR(c.opirr(a), uint32(v), uint32(0), uint32(REGTMP))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    > Kotlin is designed with Java Interoperability in mind. Existing Java code can be called from Kotlin in a natural way, and Kotlin code can be used from Java rather smoothly as well.
    
    Both link:{kotlin-reference}java-interop.html[calling Java from Kotlin] and link:{kotlin-reference}java-to-kotlin-interop.html[calling Kotlin from Java] are very well covered in the Kotlin reference documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    That's because `from appClasses` is its own child specification independent of `with webAssetsSpec`.
    
    This can be confusing, so it's probably best to treat `with()` as an extra `from()` specification in the task.
    Hence, it doesn't make sense to define a standalone copy spec without at least one `from()` defined.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Offset = offset + 32
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS32
    
    			p = s.Prog(ppc64.ALXV)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Offset = offset + 48
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS33
    
    			// generate 16 byte stores
    			p = s.Prog(ppc64.ASTXV)
    			p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            collection.from as List == ["src1", "src2"]
    
            when:
            collection.from = ["a", "b"]
            then:
            collection.from as List == [["a", "b"]]
        }
    
        def "can mutate the from collection"() {
            collection.from("src1", "src2")
            def from = collection.from
    
            when:
            from.clear()
    
            then:
            from.empty
            collection.from.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    }
    
    type authzTest struct {
    	from   echo.Instance
    	opts   echo.CallOptions
    	allow  allowValue
    	prefix string
    }
    
    func newAuthzTest() *authzTest {
    	return &authzTest{}
    }
    
    func (b *authzTest) Prefix(prefix string) *authzTest {
    	b.prefix = prefix
    	return b
    }
    
    func (b *authzTest) From(from echo.Instance) *authzTest {
    	b.from = from
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

    
            buildScript """
                task copyTask(type: Copy) {
                    into "out"
                    from "b", {
                        includeEmptyDirs = false
                    }
                    from "a"
                    from "c", {}
                    from "b", {
                        includeEmptyDirs = true
                    }
                    duplicatesStrategy = DuplicatesStrategy.INCLUDE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top