Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for Suggestion (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        val summary = "The ${target.original} configuration has been deprecated for ${deprecationType.displayName()}."
        val suggestion = "Please ${deprecationType.usage} the ${dependencyDeclarationAlternatives.joinToString(" or ", transform = ::quote)} configuration instead."
        "$summary $suggestion"
    } else {
        ""
    }
    
    
    private
    fun ConfigurationEntry<AccessorNameSpec>.getDeclarationDeprecationBlock() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. src/runtime/os_darwin.go

    	// The caller passes in a suggested stack size,
    	// from when we allocated the stack and thread ourselves,
    	// without libpthread. Now that we're using libpthread,
    	// we use the OS default stack size instead of the suggestion.
    	// Find out that stack size for our own stack guard.
    	if pthread_attr_getstacksize(&attr, &stacksize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    	g0.stack.hi = stacksize // for mstart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand6 = moduleId('fact', 'grass')
            def operand7 = moduleId('crib', 'planes')
            def operand8 = moduleId('stove', 'pull')
            def operand9 = moduleId('calculator', 'suggestion')
            def operand10 = moduleId('beginner', 'plough')
            def operand11 = moduleId('insurance', 'hat')
            def operand12 = moduleId('toys', 'plant')
            def operand13 = moduleId('trail', 'wing')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    	} else if exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks.go

    		}
    		// Return as a warning:
    		warningMessage := fmt.Sprintf("%s not found in system path", ipc.executable)
    		if ipc.suggestion != "" {
    			warningMessage += fmt.Sprintf("\nSuggestion: %s", ipc.suggestion)
    		}
    		return []error{errors.New(warningMessage)}, nil
    	}
    	return nil, nil
    }
    
    // HostnameCheck checks if hostname match dns subdomain regex.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    func mustHaveSums() bool {
    	return HasModRoot() && cfg.BuildMod == "readonly" && !inWorkspaceMode()
    }
    
    type sumMissingError struct {
    	suggestion string
    }
    
    func (e *sumMissingError) Error() string {
    	return "missing go.sum entry" + e.suggestion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute.go

    				newKubeadmVer := patchVersionStr
    				if kubeadmVersion.AtLeast(patchVersion) {
    					// In this case, the kubeadm CLI version is new enough. Don't display an update suggestion for kubeadm by making .NewKubeadmVersion equal .CurrentKubeadmVersion
    					newKubeadmVer = kubeadmVersionStr
    				}
    
    				upgrades = append(upgrades, Upgrade{
    					Description: description,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            doesNotPromptForRerunToFindMoreConfigurations()
        }
    
        def "specifying a missing config with --all and legacy configs available produces empty report and no suggestion"() {
            given:
            buildFile << """
                configurations.create("custom") {
                    description = "My custom configuration"
                    assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top