Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 244 for melhor (0.27 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestClassProcessor.java

        /**
         * Completes any pending or asynchronous processing. Blocks until all processing is complete. The processor should
         * not use the result processor provided to {@link #startProcessing(TestResultProcessor)} after this method has
         * returned.
         */
        @Override
        void stop();
    
        /**
         * Stops any pending or asynchronous processing immediately
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/AbstractTestDescriptor.java

        @Override
        public String getClassName() {
            return null;
        }
    
        /**
         * Returns the method name for this test, if any.
         * It should be in TestDescriptor, but moved here for backward compatibility
         *  TODO: move it to TestDescriptor interface with 9.0
         *
         * @return The method name. May return null.
         * @since 8.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

      /**
       * Returns a {@link ScheduledExecutorService} that never executes anything.
       *
       * <p>The {@code shutdownNow} method of the returned executor always returns an empty list despite
       * the fact that everything is still technically awaiting execution. The {@code getDelay} method
       * of any {@link ScheduledFuture} returned by the executor will always return the max long value
       * instead of the time until the user-specified delay.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    // run it in your wrapper struct of this type in its `SetDefaults_` method.
    func RecommendedDefaultHPAControllerConfiguration(obj *kubectrlmgrconfigv1alpha1.HPAControllerConfiguration) {
    	zero := metav1.Duration{}
    	if obj.ConcurrentHorizontalPodAutoscalerSyncs == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/plugin_manager_test.go

    	return &fakePluginHandler{}
    }
    
    // ValidatePlugin is a fake method
    func (f *fakePluginHandler) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    	f.Lock()
    	defer f.Unlock()
    	f.events = append(f.events, "validate "+pluginName)
    	return nil
    }
    
    // RegisterPlugin is a fake method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

     */
    public interface ResolutionAccess {
    
        /**
         * Get the owner of the resolution.
         */
        ResolutionHost getHost();
    
        /**
         * Get the request attributes for this resolution. Calling this method will lock-in the
         * request attributes from further mutation but will not perform resolution.
         */
        ImmutableAttributes getAttributes();
    
        /**
         * Get the default artifact sort order for this resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/BootstrapSecurityManager.java

    import org.gradle.internal.reflect.JavaReflectionUtil;
    import org.gradle.internal.stream.EncodedStream;
    
    import java.io.DataInputStream;
    import java.io.File;
    import java.lang.reflect.Method;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.security.Permission;
    
    /**
     * Used to bootstrap the system classpath.
     */
    public class BootstrapSecurityManager extends SecurityManager {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/fmt/errors.go

    // value that satisfies error.
    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

        }
    
        /**
         * Returns a command line elements that can be used to start this script.
         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains an absolute path to the script (which may contain spaces).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/launcher/bootstrap/ProcessBootstrap.java

    import org.gradle.internal.classloader.VisitableURLClassLoader;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.installation.CurrentGradleInstallation;
    
    import java.lang.reflect.Method;
    
    public class ProcessBootstrap {
        /**
         * Sets up the ClassLoader structure for the given class, creates an instance and invokes {@link EntryPoint#run(String[])} on it.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top