Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,389 for addLink (0.2 sec)

  1. src/cmd/link/internal/ld/symtab.go

    		moduledata.AddAddr(ctxt.Arch, sym)
    		moduledata.AddUint(ctxt.Arch, len)
    		moduledata.AddUint(ctxt.Arch, len)
    	}
    
    	sliceSym := func(sym loader.Sym) {
    		slice(sym, uint64(ldr.SymSize(sym)))
    	}
    
    	nilSlice := func() {
    		moduledata.AddUint(ctxt.Arch, 0)
    		moduledata.AddUint(ctxt.Arch, 0)
    		moduledata.AddUint(ctxt.Arch, 0)
    	}
    
    	// The pcHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

            @Configuring
            fun configuring(fn: InnerReceiver.() -> Unit)
    
            @Adding
            fun adding(fn: InnerReceiver.() -> Unit): InnerReceiver
        }
    
        interface InnerReceiver {
            @Restricted
            fun value(): Value
    
            @Restricted
            fun value(arg: Value): Value
    
            @Adding
            fun addingValue(value: Value): Value
    
            @get:Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

            then:
            env2.java.jvmArguments.contains(JVM_ARG_1)
            env2.java.jvmArguments.contains(JVM_ARG_2)
        }
    
        def "Adding zero JVM arguments is a no-op"() {
            expect:
            loadBuildEnvironment { builder -> builder.addJvmArguments() }
        }
    
        def "Adding null JVM argument throws NPE"() {
            when:
            loadBuildEnvironment { builder -> builder.addJvmArguments(null as String) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/text/tabwriter/tabwriter.go

    	widths  []int    // list of column widths in runes - re-used during formatting
    }
    
    // addLine adds a new line.
    // flushed is a hint indicating whether the underlying writer was just flushed.
    // If so, the previous line is not likely to be a good indicator of the new line's cells.
    func (b *Writer) addLine(flushed bool) {
    	// Grow slice instead of appending,
    	// as that gives us an opportunity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/LambdaTest.kt

        @Suppress("unused")
        private
        abstract class Receiver {
            @Adding
            abstract fun lambdaRequired(x: Int, configure: Receiver.() -> Unit): Receiver
    
            @Adding
            abstract fun lambdaOptional(x: Int, configure: Receiver.() -> Unit = { }): Receiver
    
            @Adding
            abstract fun lambdaNotAllowed(x: Int): Receiver
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/OverloadResolutionTest.kt

        }
    
        private
        abstract class MyTopLevelReceiver {
            @Adding
            abstract fun addSomething(x: Int, configure: MyTopLevelReceiver.() -> Unit): MyTopLevelReceiver
    
            @Adding
            abstract fun addSomething(x: Int): MyTopLevelReceiver
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/demoTypes.kt

    package com.example
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class Abc {
        @get:Restricted
        var a: Int = 0
    
        @Restricted
        fun b(): Int = 1
    
        @get:Restricted
        var str: String = ""
    
        @Adding
        fun c(x: Int, configure: C.() -> Unit = { }) =
            C().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 949 bytes
    - Viewed (0)
  8. test/defer.go

    // license that can be found in the LICENSE file.
    
    // Test defer.
    
    package main
    
    import "fmt"
    
    var result string
    
    func addInt(i int) { result += fmt.Sprint(i) }
    
    func test1helper() {
    	for i := 0; i < 10; i++ {
    		defer addInt(i)
    	}
    }
    
    func test1() {
    	result = ""
    	test1helper()
    	if result != "9876543210" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 875 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    In test execution, the modules are then treated as standard Java libraries with the encapsulation deactivated.
    
    Blackbox (e.g. integration) tests, which should also follow the encapsulation rules during test execution, can be written by turning the corresponding test sources set itself into a module by adding a `module-info.java`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java

            return this;
        }
    
        public SuggestRequestBuilder addField(final String field) {
            request.addField(field);
            return this;
        }
    
        public SuggestRequestBuilder addKind(final String kind) {
            request.addKind(kind);
            return this;
        }
    
        public SuggestRequestBuilder setSuggestDetail(final boolean suggestDetail) {
            request.setSuggestDetail(suggestDetail);
            return this;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top