Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 662 for actioned (0.16 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    				actions := client.Actions()
    				numExtraActions := len(actions) - numInitialActions
    				if numExtraActions != tc.expectedNumActions {
    					t.Logf("Expected %d additional client actions, got %d: %#v. Will retry", tc.expectedNumActions, numExtraActions, actions[numInitialActions:])
    					return false, nil
    				}
    				return true, nil
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            try {
                final SearchEngineClient esClient = ComponentUtil.getSearchEngineClient();
                final ClusterHealthResponse response =
                        esClient.admin().cluster().prepareHealth().execute().actionGet(fessConfig.getIndexHealthTimeout());
                engineObj.clusterName = response.getClusterName();
                engineObj.numberOfNodes = response.getNumberOfNodes();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            }
        }
    
        /**
         * A file copy action that collects plugin descriptors as they are added to the jar.
         */
        static class PluginDescriptorCollectorAction implements Action<FileCopyDetails> {
            private final PluginValidationActionsState actionsState;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

                    }
                }
            }
        }
    
        def "applies withXml actions"() {
            when:
            descriptor.withXml(new Action<XmlProvider>() {
                void execute(XmlProvider t) {
                    t.asNode().info[0].@revision = "3"
                }
            })
            descriptor.withXml(new Action<XmlProvider>() {
                void execute(XmlProvider t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    // WithAction returns a Shell identical to sh, but bound to Action a.
    func (sh *Shell) WithAction(a *Action) *Shell {
    	sh2 := *sh
    	sh2.action = a
    	return &sh2
    }
    
    // Shell returns a shell for running commands on behalf of Action a.
    func (b *Builder) Shell(a *Action) *Shell {
    	if a == nil {
    		// The root shell has a nil Action. The point of this method is to
    		// create a Shell bound to an Action, so disallow nil Actions here.
    		panic("nil Action")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    ====
    include::sample[dir="snippets/buildCache/conditional-action/kotlin",files="build.gradle.kts[tags=conditionalAction]"]
    include::sample[dir="snippets/buildCache/conditional-action/groovy",files="build.gradle[tags=conditionalAction]"]
    ====
    
    You should always add the action unconditionally:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            outputContains("printing from action")
    
            when:
            buildFile << """
                tasks.register('other')
            """
            run ':myTask', '--info'
            then:
            executedAndNotSkipped(':myTask')
            outputContains("printing from action")
            outputContains("One or more additional actions for task ':myTask' have changed.")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

                        }
                    }).rethrow();
                } finally {
                    // Replace the entire container, rather than clear it, to discard all the service instances and because it may contain configuration actions and
                    // other state that can affect the service instances when they are registered again
                    this.registrations = uncheckedCast(collectionFactory.newNamedDomainObjectSet(BuildServiceRegistration.class));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    [[sec:implementing-artifact-transforms]]
    == Implementing artifact transforms
    
    Similar to task types, an artifact transform consists of an action and some parameters.
    The major difference to custom task types is that the action and the parameters are implemented as two separate classes.
    
    The implementation of the artifact transform action is a class implementing link:{groovyDslPath}/org.gradle.api.artifacts.transform.TransformAction.html[TransformAction].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    				actions := sets.NewString()
    				for _, operation := range []*spec.Operation{path.Get, path.Post, path.Put, path.Patch, path.Delete} {
    					if operation != nil {
    						action, ok := operation.VendorExtensible.Extensions.GetString(endpoints.RouteMetaAction)
    						if ok {
    							actions.Insert(action)
    						}
    						if action == "patch" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top