Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,212 for need (0.07 sec)

  1. docs/en/docs/features.md

    ### Short
    
    It has sensible **defaults** for everything, with optional configurations everywhere. All the parameters can be fine-tuned to do what you need and to define the API you need.
    
    But by default, it all **"just works"**.
    
    ### Validation
    
    * Validation for most (or all?) Python **data types**, including:
        * JSON objects (`dict`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/sql-databases-peewee.md

    If you are developing an application with an older non-async framework, and can work with all its defaults, **it can be a great tool**.
    
    But if you need to change some of the defaults, support more than one predefined database, work with an async framework (like FastAPI), etc, you will need to add quite some complex extra code to override those defaults.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/why.go

    	$ go mod why golang.org/x/text/language golang.org/x/text/encoding
    	# golang.org/x/text/language
    	rsc.io/quote
    	rsc.io/sampler
    	golang.org/x/text/language
    
    	# golang.org/x/text/encoding
    	(main module does not need package golang.org/x/text/encoding)
    	$
    
    See https://golang.org/ref/mod#go-mod-why for more about 'go mod why'.
    	`,
    }
    
    var (
    	whyM      = cmdWhy.Flag.Bool("m", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInstantiator.java

    /**
     * An instantiator that uses the correct instantiation scheme depending on the plugin type.  This allows
     * us to use a decorated instantiator for types that need it (such as software type plugins) and continue
     * using the injected instantiator for types that do not need it (such as plugin types marked as final).
     */
    @NonNullApi
    public class PluginInstantiator implements Instantiator {
        private final Instantiator injectedInstantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/internal/bootstrap_test/overlaydir_test.go

    package bootstrap_test
    
    import (
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // overlayDir makes a minimal-overhead copy of srcRoot in which new files may be added.
    //
    // TODO: Once we no longer need to support the misc module in GOPATH mode,
    // factor this function out into a package to reduce duplication.
    func overlayDir(dstRoot, srcRoot string) error {
    	dstRoot = filepath.Clean(dstRoot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 53 bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

                if (watchedFiles.contains(watchableHierarchy)) {
                    // Need to stop watching this hierarchy
                    return !hasSnapshotsToWatch;
                } else {
                    // Need to start watching this hierarchy
                    return hasSnapshotsToWatch;
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/StaticReleaseNotesTest.groovy

                def href = it.attr("href")
                return href.startsWith("https://docs.gradle.org")
            }
    
            then:
            assert absoluteLinks.empty : "all links to docs.gradle.org need to be relative and not hardcode the host"
        }
    
        def "no root links to current"() {
            when:
            def links = renderedDocument.select("a")
    
            def linksToCurrent = links.grep {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. testing/precondition-tester/build.gradle.kts

            because("Smoke test preconditions are coming from here")
        }
    
        // This is a special dependency, as some of the preconditions might need a distribution.
        // E.g. see "IntegTestPreconditions.groovy"
        testImplementation(project(":distributions-core")) {
            because("Some preconditions might need a distribution to run against")
        }
    
        // ========================================================================
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/network/defaultingressclass/admission.go

    		return errors.NewInternalError(fmt.Errorf("Expected Ingress resource, got: %v", attr.GetKind()))
    	}
    
    	// IngressClassName field has been set, no need to set a default value.
    	if ingress.Spec.IngressClassName != nil {
    		return nil
    	}
    
    	// Ingress class annotation has been set, no need to set a default value.
    	if _, ok := ingress.Annotations[networkingv1beta1.AnnotationIngressClass]; ok {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 11 01:48:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top