Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 594 for instantiation (0.38 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/TestJavaObject.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    public class TestJavaObject {
        public String getSomeValue() {
            return "value";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 768 bytes
    - Viewed (0)
  2. test/typeparam/issue45547.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f[T any]() (f, g T) { return f, g }
    
    // Tests for generic function instantiation on the right hande side of multi-value
    // assignments.
    
    func g() {
    	// Multi-value assignment within a function
    	var _, _ = f[int]()
    }
    
    // Multi-value assignment outside a function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 471 bytes
    - Viewed (0)
  3. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/FlowScheduler.kt

        serviceRegistry: ServiceRegistry,
    ) {
        private
        val instantiator by lazy {
            instantiatorFactory
                .injectScheme()
                .withServices(injectableServicesOf(serviceRegistry))
                .instantiator()
        }
    
        fun schedule(scheduled: List<RegisteredFlowAction>) {
            scheduled.forEach { flowAction ->
                instantiator
                    .newInstance(flowAction.type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/Jsr330ConstructorSelector.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    import org.gradle.internal.Cast;
    import org.gradle.internal.instantiation.IllegalConstructionException;
    import org.gradle.internal.logging.text.TreeFormatter;
    
    import java.lang.reflect.Modifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:52:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/PackageScopedClass.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    class PackageScopedClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 700 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/TestDecoratedGroovyBean.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    
    package org.gradle.internal.instantiation.generator
    
    class TestDecoratedGroovyBean {
        def String prop
    
        def doStuff(String value) {
            "{$value}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 784 bytes
    - Viewed (0)
  7. test/linkname3.go

    // ERROR "//go:linkname must refer to declared function or variable"
    // ERROR "//go:linkname must refer to declared function or variable"
    // ERROR "duplicate //go:linkname for x"
    // ERROR "//go:linkname reference of an instantiation is not allowed"
    
    //line linkname3.go:20
    //go:linkname nonexist nonexist
    //go:linkname t notvarfunc
    //go:linkname x duplicate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:27:25 UTC 2024
    - 720 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AbstractClassGeneratorTestGroovy.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator
    
    class AbstractClassGeneratorTestGroovy {
    
        public static class BeanWithGroovyBoolean {
            boolean smallB
            Boolean bigB
            Boolean mixedB
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/ptrsort.go

    package main
    
    // Test generic sort function with two different pointer types in different packages,
    // make sure only one instantiation is created.
    
    import (
    	"fmt"
    
    	"cmd/compile/internal/test/testdata/mysort"
    )
    
    type MyString struct {
    	string
    }
    
    func (a *MyString) Less(b *MyString) bool {
    	return a.string < b.string
    }
    
    func main() {
    	mysort.F()
    
    	sl1 := []*mysort.MyInt{{7}, {1}, {4}, {6}}
    	mysort.Sort(sl1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 19:10:58 UTC 2022
    - 633 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @NonNullApi
    package org.gradle.internal.instantiation;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 707 bytes
    - Viewed (0)
Back to top