Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 244 for melhor (0.13 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         * This is the same as {@link #set(Object)} but returns this property to allow method chaining.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}.
         * When the value is discarded (or has never been set in the first place), the convention (default value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/net/http/transport_internal_test.go

    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    func dummyRequest(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", nil)
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    func dummyRequestWithBody(method string) *Request {
    	req, err := NewRequest(method, "http://fake.tld/", strings.NewReader("foo"))
    	if err != nil {
    		panic(err)
    	}
    	return req
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addLifecycle.
         *
         * @param lifecycle a lifecycle object.
         */
        public void addLifecycle(Lifecycle lifecycle) {
            getLifecycles().add(lifecycle);
        } // -- void addLifecycle( Lifecycle )
    
        /**
         * Method getLifecycles.
         *
         * @return List
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         *
         * <p>When this property has elements provided by a {@link Provider}, the value of the provider is queried when this method is called and the value of the provider will no longer be tracked.</p>
         *
         * <p>Note that although the value of the property will not change, the resulting map may contain mutable objects. Calling this method does not guarantee that the value will become immutable.</p>
         */
        @Override
        void finalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/psiTypeProvider/AbstractAnalysisApiKtTypeByPsiTypeProviderTest.kt

                if (useSiteOffset != null) {
                    if (useSitePosition != null) error("Only one target method is expected")
                    useSitePosition = psiFile.findElementAt(useSiteOffset)?.parentOfType<PsiElement>(withSelf = true)
                }
            }
        }
    
        return TestDataContext(psiDeclaration ?: error("Target method is not found"), useSitePosition)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

        /**
         * Casts the given object to the given type, providing a better error message than the default.
         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInKotlinIntegrationTest.groovy

    import org.gradle.test.fixtures.dsl.GradleDsl
    
    class SystemPropertyInstrumentationInKotlinIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "#method is instrumented in Kotlin"() {
            def configurationCache = newConfigurationCacheFixture()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

        @Override
        ModuleComponentIdentifier getId();
    
        /**
         * Creates a mutable copy of this metadata.
         *
         * Note that this method can be expensive. Often it is more efficient to use a more specialised mutation method such as {@link #withSources(ModuleSources)} rather than this method.
         */
        MutableModuleComponentResolveMetadata asMutable();
    
        /**
         * Creates a copy of this meta-data with the given sources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * was removed, to be replaced by {@code #using(ComponentSelector)} so there are 2 versions of tests
     * present using either of those methods - pre and post Gradle 6.6.  And when the TAPI or Gradle versions
     * are overridden on the method level, you have to be sure to copy the lower bound down to the method level
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        } // -- Object getConfiguration()
    
        /**
         * Method getGoals.
         *
         * @return List
         */
        public java.util.List<String> getGoals() {
            if (this.goals == null) {
                this.goals = new java.util.ArrayList<String>();
            }
    
            return this.goals;
        } // -- java.util.List<String> getGoals()
    
        /**
         * Method removeGoal.
         *
         * @param string a string object.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top