Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,454 for actioned (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

                "create(String)": { container.create("b") },
                "create(String, Action)": { container.create("b", Actions.doNothing()) },
                "register(String)": { container.register("b") },
                "register(String, Action)": { container.register("b", Actions.doNothing()) },
                "NamedDomainObjectProvider.configure(Action)": { container.named("a").configure(Actions.doNothing()) }
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonEventSequenceBuilder.groovy

        }
    
        private finishCheckpoint() {
            if (currentState == null) {
                if (!actions.empty) {
                    currentState = DaemonsState.getWildcardState()
                    finishCheckpoint()
                }
            } else {
                checkpoints << new DaemonsStateCheckpoint(currentState, *actions)
                actions.clear()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/versionmapping/DefaultVersionMappingStrategy.java

                if (matches.size() == 1) {
                    Collection<Action<? super VariantVersionMappingStrategy>> actions = attributeBasedMappings.get(matches.get(0));
                    for (Action<? super VariantVersionMappingStrategy> action : actions) {
                        action.execute(strategy);
                    }
                } else if (matches.size() > 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            linker.execute(spec)
    
            then:
            1 * operationLogger.getLogLocation() >> LOG_LOCATION
            1 * buildOperationExecutor.runAll(commandLineTool, _) >> { worker, action -> action.execute(queue) }
            1 * invocationContext.getArgAction() >> Actions.doNothing()
            1 * invocationContext.createInvocation("linking lib", expectedArgs, operationLogger) >> invocation
            1 * queue.add(invocation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. pkg/controller/deployment/rolling_test.go

    			if scaled || len(fake.Actions()) > 0 {
    				t.Errorf("unexpected scaling: %v", fake.Actions())
    			}
    			continue
    		}
    		if test.scaleExpected && !scaled {
    			t.Errorf("expected scaling to occur")
    			continue
    		}
    		if len(fake.Actions()) != 1 {
    			t.Errorf("expected 1 action during scale, got: %v", fake.Actions())
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle.go

    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    	return a == DeleteRestoredAction || a == DeleteRestoredVersionAction
    }
    
    // DeleteVersioned - Returns true if action demands delete on a versioned object
    func (a Action) DeleteVersioned() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

                "create(String, Class)": { container.create("b", container.type) },
                "create(String, Class, Action)": { container.create("b", container.type, Actions.doNothing()) },
                "register(String, Class)": { container.register("b", container.type) },
                "register(String, Class, Action)": { container.register("b", container.type, Actions.doNothing()) },
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

        private final List<Action<? super XmlProvider>> actions = new ArrayList<Action<? super XmlProvider>>();
        private final List<Action<? super XmlProvider>> finalizers = Lists.newArrayListWithExpectedSize(2);
        private String indentation = "  ";
    
        public void addAction(Action<? super XmlProvider> provider) {
            actions.add(provider);
        }
    
        public void addFinalizer(Action<? super XmlProvider> provider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top