Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 543 for creators (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

            val key = ModelKey(identityPath, modelName, parameter?.hash)
            return loadOrCreateValue(key) {
                try {
                    val model = if (identityPath != null) {
                        cacheFingerprintController.runCollectingFingerprintForProject(identityPath, creator)
                    } else {
                        creator()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        var creator = cache.edit("k1")!!
        creator.setString(0, "ABC")
        creator.setString(1, "DE")
        creator.commit()
        cache.flush()
        filesystem.copy(journalFile, journalBkpFile)
        creator = cache.edit("k2")!!
        creator.setString(0, "F")
        creator.setString(1, "GH")
        creator.commit()
        cache.close()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

                    private final bean = new SomeBean()
                    private final beanWithSameType = new SomeBean()
    
                    SomeTask() {
                        ${creator}
                        badField = ${reference}
                        bean.badField = ${reference}
                        beanWithSameType.badField = ${reference}
                    }
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. pkg/controller/namespace/namespace_controller.go

    	// * lifecycle admission plugins on HA apiservers to also observe a namespace
    	//   deletion and prevent new objects from being created in the terminating namespace
    	// * non-leader etcd servers to observe last-minute object creations in a namespace
    	//   so this controller's cleanup can actually clean up all objects
    	namespaceDeletionGracePeriod = 5 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

                    "- If registered via an instance or implementation type then use an overload providing an explicit service type, e.g. 'ServiceRegistration.add(serviceType, implementationType)'\n" +
                    "- If registered via a creator-method in a service provider class then change the return type of the method to the service type\n" +
                    "- Alternatively, add the '@ServiceScope()' to the implementation type",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

        fun add(diagnostic: KtDiagnosticFactory0, creator: KaFirDiagnostic0Creator) {
            conversions[diagnostic] = creator
        }
    
        fun <A> add(diagnostic: KtDiagnosticFactory1<A>, creator: KaFirDiagnostic1Creator<A>) {
            conversions[diagnostic] = creator
        }
    
        fun <A, B> add(diagnostic: KtDiagnosticFactory2<A, B>, creator: KaFirDiagnostic2Creator<A, B>) {
            conversions[diagnostic] = creator
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

        }
    
        private
        fun createContainer(k: K, creator: () -> V): CalculatedValueContainer<BlockAddress, *> =
            calculatedValueContainerFactory.create<BlockAddress>(displayNameFor(k)) {
                loadPreviousOrCreateValue(k, creator)
            }
    
        private
        fun loadPreviousOrCreateValue(key: K, creator: () -> V): BlockAddress {
            previousValues[key]?.let { previouslyCached ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

         *
         * If the jar is not found in the cache the given {@code creator} action will be invoked to create it.
         *
         * @param identifier the jar identifier (for example, {@code "api"}).
         * @param creator the action that will create the file should it not be found in the cache.
         * @return the generated file.
         */
        File get(String identifier, Action<File> creator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			Subresource:     scope.Subresource,
    			Namespace:       namespace,
    			Name:            name,
    		}
    
    		p := patcher{
    			namer:               scope.Namer,
    			creater:             scope.Creater,
    			defaulter:           scope.Defaulter,
    			typer:               scope.Typer,
    			unsafeConvertor:     scope.UnsafeConvertor,
    			kind:                scope.Kind,
    			resource:            scope.Resource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                } finally {
                    stk.pop();
                }
            }
    
            @Override
            protected ActivationOS.Builder transformActivationOS_Name(
                    Supplier<? extends ActivationOS.Builder> creator, ActivationOS.Builder builder, ActivationOS target) {
                stk.push(nextFrame("name"));
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top