Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,060 for METHOD (0.09 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

        }
    
        def "succeeds when registering a service via #method in the correct scope in strict mode"() {
            given:
            def registry = strictScopedRegistry(Scope.BuildTree)
    
            when:
            registration(registry)
            registry.get(BuildTreeScopedServiceInterface) != null
    
            then:
            noExceptionThrown()
    
            where:
            method     | registration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/go/types/example_test.go

    	fmt.Printf("Method set of %s:\n", styp)
    	fmt.Println(types.NewMethodSet(styp))
    
    	// Output:
    	// Method set of temperature.Celsius:
    	// method (temperature.Celsius) String() string
    	//
    	// Method set of *temperature.Celsius:
    	// method (*temperature.Celsius) SetF(f float64)
    	// method (*temperature.Celsius) String() string
    	//
    	// Method set of temperature.S:
    	// MethodSet {}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

        /**
         * Requests that a running build be canceled.  Note that this method does NOT block until the operation has been cancelled.
         */
        void requestCancel();
    
        /**
         * Communicates a request for build cancellation. Note that this method blocks until the operation has been cancelled.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

         * @return current project
         *
         * @implSpec Do not implement this method. Gradle generates the implementation automatically.
         * @since 8.0
         */
        @Inject
        Project getProject();
    
        /**
         * Converts an absolute or relative path to a project into a {@link ProjectDependency}. Project paths are separated by colons.
         *
         * This method fails if the project cannot be found.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    A property may be _mutable_, meaning that it has both a `get()` method and `set()` method:
    
    ====
    include::sample[dir="snippets/providers/property/kotlin",files="build.gradle.kts[tags=prop-managed]"]
    include::sample[dir="snippets/providers/property/groovy",files="build.gradle[tags=prop-managed]"]
    ====
    
    Or _read-only_, meaning that it has only a `get()` method.
    The _read-only_ properties are _providers_:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

    //
    // {
    //   {matcher {function_name {regex: "composite_conv.*"}}}
    //   {method {static_range_ptq
    //     {input_quantized_types {
    //       key: 1,
    //       value {dimension_specs {dimension: 3}}}}
    //   }}
    // }
    QuantizationSpec GetPtqSpecForConvolution(Method::MethodCase method_case) {
      QuantizationSpec spec{};
      if (method_case != Method::kStaticRangePtq) {
        return spec;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/MethodCodec.kt

    import org.gradle.internal.serialize.graph.writeClassArray
    import java.lang.reflect.Method
    
    
    object MethodCodec : Codec<Method> {
    
        override suspend fun WriteContext.encode(value: Method) {
            writeClass(value.declaringClass)
            writeString(value.name)
            writeClassArray(value.parameterTypes)
        }
    
        override suspend fun ReadContext.decode(): Method? {
            val declaringClass = readClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
        def "produces reasonable error message from a method inherited from a script containing only methods"() {
            createDirs("child")
            settingsFile << """
    include 'child'
    """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

            expect:
            assertValidationFailsWith([
                error(methodShouldNotBeAnnotatedConfig { type('MyTask').kind('method').method('notAGetter').annotation('Input') }, 'validation_problems', 'ignored_annotations_on_method'),
                error(methodShouldNotBeAnnotatedConfig { type('MyTask.Options').kind('method').method('notANestedGetter').annotation('Input') }, 'validation_problems', 'ignored_annotations_on_method'),
            ])
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Types.java

        private static final ImmutableMap<String, Method> typeVariableMethods;
    
        static {
          ImmutableMap.Builder<String, Method> builder = ImmutableMap.builder();
          for (Method method : TypeVariableImpl.class.getMethods()) {
            if (method.getDeclaringClass().equals(TypeVariableImpl.class)) {
              try {
                method.setAccessible(true);
              } catch (AccessControlException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top