Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 662 for actioned (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    					verb: "get",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						return true, createLockObject(t, objectType, action.GetNamespace(), action.(fakeclient.GetAction).GetName(), nil), nil
    					},
    				},
    				{
    					verb: "update",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						return true, action.(fakeclient.CreateAction).GetObject(), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/HelpTasksPlugin.java

        }
    
        private static class HelpAction implements Action<Help> {
            @Override
            public void execute(Help task) {
                task.setDescription("Displays a help message.");
                task.setGroup(HELP_GROUP);
                task.setImpliesSubProjects(true);
            }
        }
    
        private static class ProjectReportTaskAction implements Action<ProjectReportTask> {
            private final String project;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:15:23 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. 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)
Back to top