Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,371 for better (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/routine.go

    // in a separate Goroutine and then serves the long running request in the main Goroutine. Doing so allows
    // freeing stack memory used in preparation Goroutine for better memory efficiency.
    func WithRoutine(handler http.Handler, longRunning request.LongRunningRequestCheck) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/AbstractScopeArtifactFilter.java

     * under the License.
     */
    package org.apache.maven.artifact.resolver.filter;
    
    import org.apache.maven.artifact.Artifact;
    
    /**
     * Filter to only retain objects in the given artifactScope or better.
     *
     */
    abstract class AbstractScopeArtifactFilter implements ArtifactFilter {
    
        private boolean compileScope;
    
        private boolean runtimeScope;
    
        private boolean testScope;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/language/base/sources/BaseLanguageSourceSet.java

    import org.gradle.platform.base.internal.ComponentSpecIdentifier;
    
    /**
     * Base class that may be used for custom {@link LanguageSourceSet} implementations. However, it is generally better to use an
     * interface annotated with {@link org.gradle.model.Managed} and not use an implementation class at all.
     */
    @Incubating
    public class BaseLanguageSourceSet extends AbstractLanguageSourceSet {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappings.java

            return this;
        }
    
        // Ensure that at most one action that may have access to the mutable state of the build runs at a given time
        // TODO - move this to a better home and reuse
        private static class DslAccessRule implements Action<VcsMapping> {
            private final Object lock;
            private final Action<? super VcsMapping> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/conditional-openapi.md

    If you want to secure your API, there are several better things you can do, for example:
    
    * Make sure you have well defined Pydantic models for your request bodies and responses.
    * Configure any required permissions and roles using dependencies.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProvider.java

            } catch (NoClassDefFoundError e) {
                return null;
            }
        }
    
        @Nullable
        private Class<T> inferTypeFromCallableGenericArgument() {
            // We could do a better job of figuring this out
            // Extract the type for common case that is quick to calculate
            for (Type superType : value.getClass().getGenericInterfaces()) {
                if (superType instanceof ParameterizedType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/InvalidModelRuleException.java

        // way it is due to how we render chained exceptions on build failures.
        // That is, because the information is usually dense, splitting things up this way provides better output.
    
        private final String descriptor;
    
        public InvalidModelRuleException(ModelRuleDescriptor descriptor, Throwable cause) {
            super("There is a problem with model rule " + descriptor.toString() + ".", cause);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/component/BaseComponentSpec.java

    import org.gradle.platform.base.component.internal.DefaultComponentSpec;
    
    /**
     * Base class that may be used for custom {@link GeneralComponentSpec} implementations. However, it is generally better to use an
     * interface annotated with {@link org.gradle.model.Managed} and not use an implementation class at all.
     */
    @Incubating
    public class BaseComponentSpec extends DefaultComponentSpec implements GeneralComponentSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

                    );
                    formatter.endChildren();
                }
            }
        }
    
        /**
         * This is an adhoc reformatting tool which should go away as soon as we have
         * a better way to display multiline deprecation warnings
         */
        public static String convertToSingleLine(String message) {
            return message.replaceAll("(\\r?\\n *)+", ". ")
                .replaceAll("[.]+", ".")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top