Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for Suggestion (0.42 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelPathSuggestionProvider.java

                        return new Suggestion(distance, available);
                    } else {
                        // avoid excess creation of Suggestion objects
                        return null;
                    }
                }
            });
    
            suggestions = Iterables.filter(suggestions, REMOVE_NULLS);
            List<Suggestion> sortedSuggestions = CollectionUtils.sort(suggestions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. Development.md

    The suggestions are displayed in the separate "Try"- section of the console output.
    The suggestions are collected in the `BuildExceptionReporter` and printed to the console.
    
    In some cases, you still want to keep the old behavior and display the suggestions in the error message.
    
    ### Add custom suggestions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

            assertFailureDescriptionOrCauseContains("The $nameDescription '$deprecatedName' must not contain any of the following characters: [/, \\, :, <, >, \", ?, *, |].", suggestion)
        }
    
        void assertFailureContainsForbiddenStartOrEndCharacterMessage(String nameDescription, String deprecatedName, String suggestion = '') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    numSuggestionElements&&c.bind("resize",function(){a(".jquery-form-suggestions").each(function(){var b=a(this),c=b.attr("data-suggest-container");g(b,a(".suggestions-"+c).eq(0))})}),this._numSuggestionElements++;var h=function(b){var c=b.valAttr("suggestion-nr");a.formUtils._selectedSuggestion=null,a.formUtils._previousTypedVal=null,a(".jquery-form-suggestion-"+c).fadeOut("fast")};return b.data("suggestions",d).valAttr("suggestion-nr",this._numSuggestionElements).unbind("focus.suggest").bind("foc...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/ResolutionProvider.java

    import org.gradle.api.NonNullApi;
    
    import java.util.List;
    
    /**
     * A provider of resolutions for an exception.
     * Exceptions can be derived from this interface to provide a list of resolutions that are then displayed in the suggestion section of the error message.
     */
    
    @NonNullApi
    public interface ResolutionProvider {
        List<String> getResolutions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1014 bytes
    - Viewed (0)
  6. test-site/public/javascripts/suggestor.js

                            /*
                             //suggestionの子要素かチェック
                             var parentEle = $(reslist[i]).closest("arr");
                             if(typeof parentEle === "undefined") {
                             continue;
                             } else if($(parentEle).attr("name") != "suggestion") {
                             continue;
                             }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// If key didn't exist, it will return NotFound storage error.
    	// If 'cachedExistingObject' is non-nil, it can be used as a suggestion about the
    	// current version of the object to avoid read operation from storage to get it.
    	// However, the implementations have to retry in case suggestion is stale.
    	Delete(
    		ctx context.Context, key string, out runtime.Object, preconditions *Preconditions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "crib",
            "lunchroom",
            "sort",
            "building",
            "fact",
            "grass",
            "planes",
            "stove",
            "pull",
            "calculator",
            "suggestion",
            "beginner",
            "plough",
            "insurance",
            "hat",
            "toys",
            "plant",
            "trail",
            "wing",
            "ring",
            "desk",
            "yak",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Errorf("unexpected pod generation: %q", updatedPod2.Generation)
    	}
    
    	// Third, update using a current version as the suggestion.
    	// Return an error and make sure that SimpleUpdate is NOT called a second time,
    	// since the live lookup shows the suggestion was already up to date.
    	attempts := 0
    	updatedPod3 := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, updatedPod3, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. pkg/apis/core/annotation_key_constants.go

    	// in the Annotations of a Node.
    	PreferAvoidPodsAnnotationKey string = "scheduler.alpha.kubernetes.io/preferAvoidPods"
    
    	// ObjectTTLAnnotationKey represents a suggestion for kubelet for how long it can cache
    	// an object (e.g. secret, config map) before fetching it again from apiserver.
    	// This annotation can be attached to node.
    	ObjectTTLAnnotationKey string = "node.alpha.kubernetes.io/ttl"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top