Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 244 for melhor (0.26 sec)

  1. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistrationProvider.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Marker interface for service registration providers.
     *
     * These are types contain method annotated with {@literal @}{@link Provides} to register services.
     */
    public interface ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 871 bytes
    - Viewed (0)
  2. manifests/addons/dashboards/README.md

    More info on development workflow of these dashboards can be found [here](https://blog.howardjohn.info/posts/grafana-dashboard-dev/).
    This is the preferred method for any new dashboards.
    
    ## Legacy Dashboards
    
    Many of our older dashboards are manually created in the UI and exported as JSON and checked in.
    
    ## Generation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            }
            return gradleApi;
        }
    
        private ClassPath initGradleApi() {
            // This gradleApi() method creates a Gradle API classpath based on real jars for embedded test running.
            // Currently, this leaks additional dependencies that may cause unexpected issues.
            // This method is involved in generating the gradleApi() Jar which is used in a real Gradle run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

                    assert selectors[0].projectPath == ':a'
                }
            """
    
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

            String urlHash = getHash(Download.safeUri(configuration.getDistribution()).toASCIIString());
            return distName + "/" + urlHash;
        }
    
        /**
         * This method computes a hash of the provided {@code string}.
         * <p>
         * The algorithm in use by this method is as follows:
         * <ol>
         *    <li>Compute the MD5 value of the UTF-8 {@code string}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailureDetails.java

         * <p>
         * If the current instance does not represent an assertion failure, or the test failure doesn't provide any information about expected and actual values then the method returns {@code null}.
         *
         * @return The expected value
         */
        @Nullable
        String getExpected();
    
        /**
         * Returns a string representation of the actual value for an assertion failure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/link/testdata/linkname/badlinkname.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Existing pull linknames in the wild are allowed _for now_,
    // for legacy reason. Test a function and a method.
    // NOTE: this may not be allowed in the future. Don't do this!
    
    package main
    
    import (
    	_ "reflect"
    	"unsafe"
    )
    
    //go:linkname noescape runtime.noescape
    func noescape(unsafe.Pointer) unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:48:00 UTC 2024
    - 620 bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestMethodDescriptor.java

        public DefaultTestMethodDescriptor(Object id, String className, String methodName) {
            super(id, className, methodName);
        }
    
        @Override
        public String toString() {
            return "Test method " + getName() + "(" + getClassName() + ")";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1001 bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10KlibSourceFileNameProvider.kt

        override val analysisSession: KaSession,
    ) : KaKlibSourceFileNameProvider() {
        override fun getKlibSourceFileName(declaration: KaDeclarationSymbol): String? {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 877 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/NoSuchMethodException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.reflect;
    
    /**
     * Thrown when a requested method cannot be found.
     */
    @SuppressWarnings("JavaLangClash")
    public class NoSuchMethodException extends RuntimeException {
        public NoSuchMethodException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 894 bytes
    - Viewed (0)
Back to top