Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Suggestion (0.29 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/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.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/modfile.go

    		key := module.Version{Path: actual.Path, Version: actual.Version + "/go.mod"}
    		if !modfetch.HaveSum(key) {
    			suggestion := fmt.Sprintf(" for go.mod file; to add it:\n\tgo mod download %s", m.Path)
    			return nil, module.VersionError(actual, &sumMissingError{suggestion: suggestion})
    		}
    	}
    	summary, err := rawGoModSummary(actual)
    	if err != nil {
    		return nil, err
    	}
    
    	if actual.Version == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top