Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 347 for typeA (0.09 sec)

  1. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    @TargetVersions("5.0+")
    class StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec extends CrossVersionIntegrationSpec {
    
        @Issue("https://github.com/gradle/gradle/issues/6027")
        def "task can use project.file() from statically typed Groovy"() {
            when:
            def apiDepConf = "implementation"
            if (previous.version < GradleVersion.version("7.0-rc-1")) {
                apiDepConf = "compile"
            }
            def groovyDepConf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

     *      } else if (model instance of Bird) {
     *          // will never be true, Bird is not specified as a model contract type
     *      }
     * </pre>
     *
     * @since 8.9
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE})
    @Incubating
    public @interface ToolingModelContract {
    
        /**
         * Child types of a TAPI model interface (marked by this annotation), which will be
         * handled polymorpically on the TAPI client side.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "execute(command, (String[]) null, null)", "", ""],
                [fromString(), "execute(command, null, (File) null)", "", ""],
                [fromString(), "execute(command, (String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "execute(command as String, null, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/AbstractDependencyDescriptorFactoryInternalSpec.groovy

        static final TEST_IVY_EXCLUDE_RULE = getTestExcludeRule()
    
        static final ARTIFACT = new DefaultDependencyArtifact("name", "type", "classifier", "ext", null)
        static final ARTIFACT_WITH_CLASSIFIERS = new DefaultDependencyArtifact("name2", "type2", "ext2", "classifier2", "http://www.url2.com")
    
        def excludeRuleConverterStub = Mock(ExcludeRuleConverter)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 19:31:08 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/internal/fmtsort/sort_test.go

    }
    
    // sprintKey formats a reflect.Value but gives reproducible values for some
    // problematic types such as pointers. Note that it only does special handling
    // for the troublesome types used in the test cases; it is not a general
    // printer.
    func sprintKey(key reflect.Value) string {
    	switch str := key.Type().String(); str {
    	case "*int":
    		ptr := key.Interface().(*int)
    		for i := range ints {
    			if ptr == &ints[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/response-directly.md

    Sie können beispielsweise kein Pydantic-Modell in eine `JSONResponse` einfügen, ohne es zuvor in ein `dict` zu konvertieren, bei dem alle Datentypen (wie `datetime`, `UUID`, usw.) in JSON-kompatible Typen konvertiert wurden.
    
    In diesen Fällen können Sie den `jsonable_encoder` verwenden, um Ihre Daten zu konvertieren, bevor Sie sie an eine Response übergeben:
    
    ```Python hl_lines="6-7  21-22"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:36 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    string AttrView::VariableName() const { return attr_.name(); }
    
    string AttrView::VariableType() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    	client "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
    	informers "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1"
    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    )
    
    // EstablishingController controls how and when CRD is established.
    type EstablishingController struct {
    	crdClient client.CustomResourceDefinitionsGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Nofootnote:1[]
    
    |3
    |Kotlin DSL
    |Pre-compiled script plugin
    |a `.gradle.kts` file.
    |Yes
    
    |4
    |Groovy DSL
    |Pre-compiled script plugin
    |a `.gradle` file.
    |Okfootnote:2[It is recommended to use a statically-typed language like *Java* or *Kotlin* for implementing plugins to reduce the likelihood of binary incompatibilities. If using Groovy, consider using *statically compiled Groovy*.]
    
    |5
    |Java
    |Binary plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/go/types/const.go

    		check.error(atPos(opPos), InvalidConstVal, "constant result is not representable")
    		return
    	}
    
    	// Typed constants must be representable in
    	// their type after each constant operation.
    	// x.typ cannot be a type parameter (type
    	// parameters cannot be constant types).
    	if isTyped(x.typ) {
    		check.representable(x, under(x.typ).(*Basic))
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top