Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,147 for apiJar (0.12 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'java'
    
                group = 'group'
                version = '1.0'
    
                task apiJar(type: Jar) {
                    from sourceSets.main.output
                    archiveBaseName = "root-api"
                    exclude "**/impl/**"
                }
    
                publishing {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

            buildFile << """
                apply plugin: 'maven-publish'
                apply plugin: 'java'
    
                group = 'group'
                version = '1.0'
    
                task apiJar(type: Jar) {
                    from sourceSets.main.output
                    archiveBaseName = "root-api"
                    exclude "**/impl/**"
                }
    
                publishing {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        extendsFrom(externalRuntimeOnly.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    enum class Filtering {
        PUBLIC_API, ALL
    }
    
    val filteredAttribute: Attribute<Filtering> = Attribute.of("org.gradle.apijar.filtered", Filtering::class.java)
    
    dependencies {
        artifactTypes.getByName("jar") {
            attributes.attribute(filteredAttribute, Filtering.ALL)
        }
    
        // Filters out classes that are not exposed by our API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. docs/tr/docs/alternatives.md

        **FastAPI**'ın header ve çerez tanımlamak için fonksiyonlarda `response` parametresini belirtmesinde de Hug'dan ilham alındı.
    
    ### <a href="https://github.com/encode/apistar" class="external-link" target="_blank">APIStar</a> (<= 0.5)
    
    **FastAPI**'ı geliştirmeye başlamadan hemen önce **APIStar** sunucusunu buldum. Benim aradığım şeylerin neredeyse hepsine sahipti ve harika bir tasarımı vardı.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/e.2.golden

    		T4
    	}
    
    	// T4.M should appear as method of T5 only if AllMethods is set. 
    	func (*T5) M()
    
    	// 
    	type U1 struct {
    		*U1
    	}
    
    	// U1.M should appear as method of U1. 
    	func (*U1) M()
    
    	// 
    	type U2 struct {
    		*U3
    	}
    
    	// U2.M should appear as method of U2 and as method of U3 only if ...
    	func (*U2) M()
    
    	// U3.N should appear as method of U3 and as method of U2 only if ...
    	func (U2) N()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  6. cmd/admin-handler-utils.go

    	if err == nil {
    		return noError
    	}
    
    	var apiErr APIError
    	switch e := err.(type) {
    	case policy.Error:
    		apiErr = APIError{
    			Code:           "XMinioMalformedIAMPolicy",
    			Description:    e.Error(),
    			HTTPStatusCode: http.StatusBadRequest,
    		}
    	case config.ErrConfigNotFound:
    		apiErr = APIError{
    			Code:           "XMinioConfigNotFoundError",
    			Description:    e.Error(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/go/doc/testdata/e.1.golden

    	func (*V6) M()
    
    	// 
    	type t1 struct{}
    
    	// t1.M should not appear as method in a Tx type. 
    	func (t1) M()
    
    	// 
    	type t1e struct {
    		t1
    	}
    
    	// t1.M should not appear as method in a Tx type. 
    	func (t1e) M()
    
    	// 
    	type t2 struct{}
    
    	// t2.M should not appear as method in a Tx type. 
    	func (t2) M()
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		apiErr = ErrObjectLocked
    	case InvalidVersionID:
    		apiErr = ErrInvalidVersionID
    	case VersionNotFound:
    		apiErr = ErrNoSuchVersion
    	case ObjectAlreadyExists:
    		apiErr = ErrMethodNotAllowed
    	case ObjectNameInvalid:
    		apiErr = ErrInvalidObjectName
    	case ObjectNamePrefixAsSlash:
    		apiErr = ErrInvalidObjectNamePrefixSlash
    	case InvalidUploadID:
    		apiErr = ErrNoSuchUpload
    	case InvalidPart:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. cmd/object-api-errors.go

    	case errVolumeNotFound.Error():
    		apiErr := BucketNotFound{}
    		if len(params) >= 1 {
    			apiErr.Bucket = params[0]
    		}
    		return apiErr
    	case errVolumeNotEmpty.Error():
    		apiErr := BucketNotEmpty{}
    		if len(params) >= 1 {
    			apiErr.Bucket = params[0]
    		}
    		return apiErr
    	case errVolumeExists.Error():
    		apiErr := BucketExists{}
    		if len(params) >= 1 {
    			apiErr.Bucket = params[0]
    		}
    		return apiErr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/go/doc/testdata/e.go

    }
    
    // U2.M should appear as method of U2 and as method of U3 only if AllMethods is set.
    func (*U2) M() {}
    
    type U3 struct {
    	*U2
    }
    
    // U3.N should appear as method of U3 and as method of U2 only if AllMethods is set.
    func (*U3) N() {}
    
    type U4 struct {
    	*u5
    }
    
    // U4.M should appear as method of U4.
    func (*U4) M() {}
    
    type u5 struct {
    	*U4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
Back to top