Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,380 for takes (0.84 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

            MethodDescription.name("a").returns(String).takes().toString() == "java.lang.String a()"
            MethodDescription.name("a").returns(String).owner(String).takes().toString() == "java.lang.String java.lang.String#a()"
            MethodDescription.name("a").returns(String).owner(String).takes(String).toString() == "java.lang.String java.lang.String#a(java.lang.String)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.h

    // Expose higher level Assignment operation for Pluggable vendors to implement
    // in the plugin for Training. The API takes in the context with indices for
    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ForkOptions.java

        private String tempDir;
    
        private File javaHome;
    
        /**
         * Returns the compiler executable to be used.
         * <p>
         * Only takes effect if {@code CompileOptions.fork} is {@code true}. Defaults to {@code null}.
         * <p>
         * Setting the executable disables task output caching.
         */
        @Nullable
        @Optional
        @Input
        public String getExecutable() {
            return executable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaHashCodeTest.kt

    import org.hamcrest.CoreMatchers.not
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class ProjectSchemaHashCodeTest : TestWithClassPath() {
    
        @Test
        fun `hash code takes configurations into account`() {
    
            assertThat(
                hashCodeFor(
                    configurations = listOf("api")
                ),
                equalTo(
                    hashCodeFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    type FakeExamples struct {
    	Fake *FakeCrV1
    	ns   string
    }
    
    var examplesResource = v1.SchemeGroupVersion.WithResource("examples")
    
    var examplesKind = v1.SchemeGroupVersion.WithKind("Example")
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    func (c *FakeExamples) Get(ctx context.Context, name string, options metav1.GetOptions) (result *v1.Example, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/SettingsSchemaAccessorsIntegrationTest.kt

                        println("Plugin extension takes precedence!")
                        configure<my.MySettingsExtension> {
                            action()
                        }
                    }
                """
            )
    
            val result = build("ok")
    
            // then:
            result.assertOutputContains("It's 42!")
            result.assertOutputContains("Plugin extension takes precedence!")
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(RegisterDefaults)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake/fake_customresourcedefinition.go

    }
    
    var customresourcedefinitionsResource = v1beta1.SchemeGroupVersion.WithResource("customresourcedefinitions")
    
    var customresourcedefinitionsKind = v1beta1.SchemeGroupVersion.WithKind("CustomResourceDefinition")
    
    // Get takes name of the customResourceDefinition, and returns the corresponding customResourceDefinition object, and an error if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodDescription.java

                    .returns(method.getGenericReturnType())
                    .takes(method.getGenericParameterTypes());
        }
    
        public static MethodDescription of(Constructor<?> constructor) {
            return name("<init>")
                    .owner(constructor.getDeclaringClass())
                    .takes(constructor.getGenericParameterTypes());
        }
    
        private String typeName(Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	ns     string
    }
    
    // newExamples returns a Examples
    func newExamples(c *CrV1Client, namespace string) *examples {
    	return &examples{
    		client: c.RESTClient(),
    		ns:     namespace,
    	}
    }
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    func (c *examples) Get(ctx context.Context, name string, options metav1.GetOptions) (result *v1.Example, err error) {
    	result = &v1.Example{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top