Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 534 for actioned (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

        }
    
        @Override
        public void buildCache(Action<? super BuildCacheConfiguration> action) {
            action.execute(getBuildCache());
        }
    
        @Override
        @Inject
        public abstract BuildCacheConfigurationInternal getBuildCache();
    
        @Override
        public void pluginManagement(Action<? super PluginManagementSpec> rule) {
            rule.execute(getPluginManagement());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    	// actions are likely to be already sent
    	err := wait.Poll(10*time.Millisecond, 5*time.Second, func() (bool, error) {
    		for _, action := range fakeClientset.Actions() {
    			if action.GetVerb() == "patch" && action.GetResource().Resource == "pods" {
    				podPatched = true
    			}
    			if action.GetVerb() == "delete" && action.GetResource().Resource == "pods" {
    				podDeleted = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

        }
    
        @Override
        public JavaToolchainSpec toolchain(Action<? super JavaToolchainSpec> action) {
            action.execute(toolchain);
            return toolchain;
        }
    
        @Override
        public void consistentResolution(Action<? super JavaResolutionConsistency> action) {
            maybeEmitMissingJavaComponentDeprecation("consistentResolution(Action)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

            }
    
            @Override
            public void configure(final Action<? super I> action) {
                assertMutable("NamedDomainObjectProvider.configure(Action)");
    
                if (action == Actions.doNothing()) {
                    return;
                }
    
                Action<? super I> wrappedAction = withMutationDisabled(action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

            and:
            verifyAll(receivedProblem(0)) {
                fqid == 'deprecation:custom-task-action'
                contextualLabel == 'Custom Task action has been deprecated.'
                solutions == [
                    'Use task type X instead.',
                    'Task \':t\' should not have custom actions attached.',
                ]
            }
            verifyAll(receivedProblem(1)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. pkg/controller/deployment/sync_test.go

    		controller.cleanupDeployment(ctx, test.oldRSs, d)
    
    		deletedRSs := sets.String{}
    		for _, action := range fake.Actions() {
    			deleteAction, ok := action.(testclient.DeleteActionImpl)
    			if !ok {
    				t.Logf("Found not-delete action with verb %v. Ignoring.", action.GetVerb())
    				continue
    			}
    
    			if deleteAction.GetResource().Resource != "replicasets" {
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            return from(mergePaths, Actions.<ManifestMergeSpec>doNothing());
        }
    
        @Override
        public DefaultManifest from(Object mergePaths, Closure<?> closure) {
            return from(mergePaths, ClosureBackedAction.<ManifestMergeSpec>of(closure));
        }
    
        @Override
        public DefaultManifest from(Object mergePath, Action<ManifestMergeSpec> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

                client.prepareUpdate().setIndex(settingsIndexName).setId(settingsId).setDocAsUpsert(true).setDoc(key, value)
                        .setRetryOnConflict(5).execute().actionGet(getIndexTimeout());
                client.admin().indices().prepareRefresh().setIndices(settingsIndexName).execute().actionGet(getIndicesTimeout());
            } catch (final Exception e) {
                throw new SuggestSettingsException("Failed to update suggestSettings.", e);
            }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

            private Set<SocketAddress> requesters = new LinkedHashSet<>();
            private boolean running;
    
            private ContendedAction(long lockId, Consumer<FileLockReleasedSignal> action) {
                this.lockId = lockId;
                this.action = action;
            }
    
            @Override
            public void run() {
                action.accept(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

        }
    
        /**
         * Executes the given action in another thread, and asserts that the action blocks until all actions provided to
         * {@link #expectUnblocks(groovy.lang.Closure)} have been executed.
         *
         * @param action The action to execute.
         */
        public void expectBlocks(Closure action) {
            syncPoint.expectBlocks(action);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top