Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 372 for actioned (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/text/template/parse/node.go

    	NodeVariable                   // A $ variable.
    	NodeWith                       // A with action.
    	NodeComment                    // A comment.
    	NodeBreak                      // A break action.
    	NodeContinue                   // A continue action.
    )
    
    // Nodes.
    
    // ListNode holds a sequence of nodes.
    type ListNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Nodes []Node // The element nodes in lexical order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "handles invalid action classloader"() {
            given:
            buildScript """
                ${customTaskCode('foo', 'bar')}
                def classLoader = new GroovyClassLoader(this.class.classLoader)
                def c = classLoader.parseClass '''
                    class A implements $Action.name {
                        void execute(task) {}
                    }
                '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

            SearchResponse response = client.prepareSearch(index).setSize(500).setScroll(settings.getScrollTimeout())
                    .setQuery(QueryBuilders.rangeQuery(FieldNames.DOC_FREQ).gte(1)).execute().actionGet(settings.getSearchTimeout());
            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHit[] hits = response.getHits().getHits();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            then:
            noneSkipped()
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "task with custom actions gets logged"() {
            when:
            withBuildCache().run "compileJava", "--info"
            then:
            noneSkipped()
            !output.contains("Custom actions are attached to task ':compileJava'.")
    
            expect:
            withBuildCache().run "clean"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.opensearch.OpenSearchException;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.update.UpdateRequestBuilder;
    import org.opensearch.action.update.UpdateResponse;
    import org.opensearch.common.document.DocumentField;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top