Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for actioned (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        }
    
        def "transforms Java lambda Action implementations so they can be serialized"() {
            given:
            def cl = transformAndLoad(ClassWithActionLambda)
    
            expect:
            def original = cl.action(123)
            original instanceof Serializable
    
            def action = recreate(original)
            def result = new StringBuilder()
            action.execute(result)
    
            result.toString() == "123"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. cmd/bucket-listobjects-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    	var checkObjMeta metaCheckFn
    	if metadata {
    		checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) {
    			return checkRequestAuthType(ctx, r, action, bucket, name)
    		}
    	}
    	urlValues := r.Form
    
    	// Extract all the listBucketVersions query params to their native values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/apis/batch/types.go

    type PodFailurePolicyAction string
    
    const (
    	// This is an action which might be taken on a pod failure - mark the
    	// pod's job as Failed and terminate all running pods.
    	PodFailurePolicyActionFailJob PodFailurePolicyAction = "FailJob"
    
    	// This is an action which might be taken on a pod failure - mark the
    	// Job's index as failed to avoid restarts within this index. This action
    	// can only be used when backoffLimitPerIndex is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtDeclarationRenderer.kt

                this.scriptInitializerRenderer = renderer.scriptInitializerRenderer
    
                action()
            }
        }
    
        public companion object {
            public operator fun invoke(action: Builder.() -> Unit): KaDeclarationRenderer =
                Builder().apply(action).build()
        }
    
        public open class Builder {
            public lateinit var returnTypeFilter: KaCallableReturnTypeFilter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            Object results = connection.run(action, buildCancellationToken, providerParameters);
            return new ProviderBuildResult<>(Cast.uncheckedNonnullCast(results));
        }
    
        /**
         * This is used by consumers 4.4 and later
         */
        @Override
        public <T> BuildResult<T> run(InternalBuildActionVersion2<T> action, InternalCancellationToken cancellationToken, BuildParameters operationParameters)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                    public Foo getFoo() {
                        return foo;
                    }
    
                    @Configuring
                    public void foo(Action<? super Foo> action) {
                        action.execute(foo);
                    }
    
                    public abstract static class Foo {
                        public Foo() {
                            this.getBar().convention("nothing");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

                assert action.descriptor.toString() == 'ModelRuleExtractorTest.MutationAndFinalizeRules#finalize1(List<String>)'
            }
    
            then:
            1 * registry.configure(ModelActionRole.Mutate, _) >> { ModelActionRole role, ModelAction action ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/apply.go

    	cmd.Flags().BoolVar(&flags.dryRun, options.DryRun, flags.dryRun, "Do not change any state, just output what actions would be performed.")
    	cmd.Flags().BoolVar(&flags.etcdUpgrade, options.EtcdUpgrade, flags.etcdUpgrade, "Perform the upgrade of etcd.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        task: TaskInternal,
        codec: Codec<Any?>,
        action: suspend () -> Unit
    ) where T : IsolateContext, T : MutableIsolateContext {
        withIsolate(IsolateOwners.OwnerTask(task), codec) {
            withPropertyTrace(PropertyTrace.Task(taskType, task.identityPath.path)) {
                if (task.isCompatibleWithConfigurationCache) {
                    action()
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                def failure
                try {
                    connection.action(buildAction)
                        .withArguments(args)
                        .setStandardOutput(new TeeOutputStream(output, System.out))
                        .setStandardError(new TeeOutputStream(error, System.err))
                        .run()
                    throw new IllegalStateException("Expected build action to fail but it did not.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top