Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 146 for slug (0.3 sec)

  1. docs/pt/docs/alternatives.md

    Marshmallow e Webargs fornecem validação, análise e serialização como plug-ins.
    
    Mas a documentação ainda está faltando. Então APISpec foi criado.
    
    APISpec tem plug-ins para muitos frameworks (e tem um plug-in para Starlette também).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types.go

    	// Plugins allows specifying a configuration per admission control plugin.
    	// +optional
    	Plugins []AdmissionPluginConfiguration `json:"plugins"`
    }
    
    // AdmissionPluginConfiguration provides the configuration for a single plug-in.
    type AdmissionPluginConfiguration struct {
    	// Name is the name of the admission controller.
    	// It must match the registered admission plugin name.
    	Name string `json:"name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 14:05:50 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    Marshmallow and Webargs provide validation, parsing and serialization as plug-ins.
    
    But documentation is still missing. Then APISpec was created.
    
    It is a plug-in for many frameworks (and there's a plug-in for Starlette too).
    
    The way it works is that you write the definition of the schema using YAML format inside the docstring of each function handling a route.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.PluginContainer;
    
    /**
     * Interface representing a Maven project packaging.
     * <p>
     * TODO: define how to plug in new packaging definitions using the SPI.
     *   the packaging are currently defined by Maven 3 {@code Provider<LifecycleMapping>}
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/volume/testing/volume_host.go

    	wrapperVolumeName := "wrapped_" + volName
    	if spec.Volume != nil {
    		spec.Volume.Name = wrapperVolumeName
    	}
    	plug, err := f.pluginMgr.FindPluginBySpec(&spec)
    	if err != nil {
    		return nil, err
    	}
    	return plug.NewMounter(&spec, pod, opts)
    }
    
    func (f *fakeVolumeHost) NewWrapperUnmounter(volName string, spec Spec, podUID types.UID) (Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. docs/tr/docs/features.md

    ### Sınırsız "plug-inler"
    
    Başka bir deyişle, plug-inlere ihtiyacımız yok, import edip direkt olarak kullanmaya başlayabiliriz.
    
    Bütün entegrasyonlar kullanımı kolay olmak üzere (zorunluluklar ile beraber) tasarlandı, sen bir "plug-in" yaratıp 2 satır kod ile, *path operasyonlarında* kullandığımız syntax ve aynı yapı ile koduna entregre edebilirsin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin.go

    	"io"
    
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/configuration"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/generic"
    )
    
    const (
    	// PluginName indicates the name of admission plug-in
    	PluginName = "MutatingAdmissionWebhook"
    )
    
    // Register registers a plugin
    func Register(plugins *admission.Plugins) {
    	plugins.Register(PluginName, func(configFile io.Reader) (admission.Interface, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/dependencies/index.md

    * resources
    * providers
    * services
    * injectables
    * components
    
    ## **FastAPI** plug-ins
    
    Integrations and "plug-ins" can be built using the **Dependency Injection** system. But in fact, there is actually **no need to create "plug-ins"**, as by using dependencies it's possible to declare an infinite number of integrations and interactions that become available to your *path operation functions*.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. docs/es/docs/features.md

    ### "Plug-ins" ilimitados
    
    O dicho de otra manera, no hay necesidad para "plug-ins". Importa y usa el código que necesites.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    image::eclipse.png[]
    
    link:https://marketplace.eclipse.org/content/buildship-gradle-integration[Buildship] is a set of Eclipse Plug-ins that provide a deep integration of Gradle into the Eclipse IDE.
    
    You can find documentation link:https://projects.eclipse.org/projects/tools.buildship[here].
    
    == NetBeans
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top