Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for apiFunctions (0.18 sec)

  1. cmd/test-utils_test.go

    	objTest(objLayer, ErasureTestStr, erasureDisks, t)
    	defer removeRoots(erasureDisks)
    }
    
    func registerBucketLevelFunc(bucket *mux.Router, api objectAPIHandlers, apiFunctions ...string) {
    	for _, apiFunction := range apiFunctions {
    		switch apiFunction {
    		case "PostPolicy":
    			// Register PostPolicy handler.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        }
    
        val typeParameters: List<ApiTypeUsage> by unsafeLazy {
            context.apiTypeParametersFor(visitedSignature)
        }
    
        val functions: List<ApiFunction> by unsafeLazy {
            delegate.methods.filter(::isSignificantDeclaration).map { ApiFunction(asmLevel, incubatingAnnotationTypeDescriptor, this, it, context) }
        }
    
        private
        fun singleAbstractMethodOf(classNode: ClassNode) =
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

    private
    fun candidatesForExtensionFrom(type: ApiType): Sequence<ApiFunction> =
        type.functions.filter(::isCandidateForExtension).asSequence()
    
    
    private
    fun Sequence<ApiFunction>.sortedWithTypeOfTakingFunctionsFirst() =
        sortedBy { f ->
            if (f.parameters.any { it.type.isGradleTypeOf }) 0
            else 1
        }
    
    
    private
    fun ApiFunction.newMappedParameters() =
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top