Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 679 for oplus (0.31 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *HorizontalPodAutoscaler) APILifecycleDeprecated() (major, minor int) {
    	return 1, 22
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 08 15:55:31 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. docs/fr/docs/async.md

    Et c'est le même niveau de performance que celui obtenu avec **FastAPI**.
    
    Et comme on peut avoir du parallélisme et de l'asynchronicité en même temps, on obtient des performances plus hautes que la plupart des frameworks NodeJS et égales à celles du Go, qui est un langage compilé plus proche du C <a href="https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1" class="external-link" target="_blank">(tout ça grâce à Starlette)</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/TypeDiscovery.kt

    }
    
    
    operator fun TypeDiscovery.plus(other: TypeDiscovery): CompositeTypeDiscovery = CompositeTypeDiscovery(buildList {
        fun include(typeDiscovery: TypeDiscovery) = when (typeDiscovery) {
            is CompositeTypeDiscovery -> addAll(typeDiscovery.implementations)
            else -> add(typeDiscovery)
        }
        include(this@plus)
        include(other)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:30:30 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseProject.xml

                    <td>[]</td>
                </tr>
                <tr>
                    <td>natures</td>
                    <td>Java nature, plus Groovy, Scala and Web natures as appropriate.</td>
                </tr>
                <tr>
                    <td>buildCommands</td>
                    <td>Java builder, plus Scala and Web builders as appropriate.</td>
                </tr>
                <tr>
                    <td>linkedResources</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/headers/operators.h

    int plus(int a, int b);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.reflection.reflect
    import org.gradle.internal.declarativedsl.schemaBuilder.plus
    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import org.gradle.internal.declarativedsl.schemaBuilder.treatInterfaceAsConfigureLambda
    import org.junit.jupiter.api.Test
    import kotlin.test.assertEquals
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

                }
            }
        }
    
        /**
         * Returns the next group of elements after removing them from the queue.
         *
         * The group contains the most recently pushed element plus all
         * elements superseded by it ordered from most recent to least recent.
         */
        fun nextGroup(timeoutMillis: Long = pollTimeoutMillis): List<T> {
            lock.withLock {
                if (q.isNotEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiver.ir.txt

            VALUE_PARAMETER name:p1 index:1 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PLUS
                  $this: CALL 'public open fun <get-length> (): kotlin.Int declared in kotlin.String' type=kotlin.Int origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/ConfigureLambdaHandler.kt

            val value: Any?
                get() = lazyValue.value
        }
    }
    
    
    operator fun ConfigureLambdaHandler.plus(other: ConfigureLambdaHandler) =
        CompositeConfigureLambdas(buildList {
            when (this@plus) {
                is CompositeConfigureLambdas -> addAll(implementations)
                else -> add(this@plus)
            }
            when (other) {
                is CompositeConfigureLambdas -> addAll(other.implementations)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

            }
            for (Module pluginModule : pluginModuleRegistry.getApiModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
            for (Module pluginModule : pluginModuleRegistry.getImplementationModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
            return removeJaxbIfIncludedInCurrentJdk(classpath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top