Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 372 for actioned (0.25 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

            doAddProvider(configurationContainer.getByName(configurationName), dependencyNotation, closureOf(configuration));
        }
    
        @Override
        public <T> void addProvider(String configurationName, Provider<T> dependencyNotation) {
            addProvider(configurationName, dependencyNotation, Actions.doNothing());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            '''
    
            expect:
            succeeds 'assertActionExecutionCount'
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/662")
        def "runs the lazy configuration actions in the same order as the eager configuration actions"() {
            buildFile << '''
                def actionExecutionOrderForTaskA = []
    
                class A extends DefaultTask {}
    
                tasks.withType(A).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    To do this, pass the build service `Provider` as a parameter of the consuming action or service, in the same way you pass other parameters to the action or service.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        menu.style.top = y + 'px';
        // Set menu links to operate on clicked box.
        setHrefParam('action-source', 'f', box.src);
        setHrefParam('action-source-tab', 'f', box.src);
        setHrefParam('action-focus', 'f', box.src);
        setHrefParam('action-ignore', 'i', box.src);
        setHrefParam('action-hide', 'h', box.src);
        setHrefParam('action-showfrom', 'sf', box.src);
        toggleClass(box.src, 'hilite2', true);
        actionTarget = box;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    		// in the plugin's pseudo-import path returned below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top