Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,572 for Actions (0.11 sec)

  1. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    				// Most probably it's exponential backoff
    				time.Sleep(10 * time.Millisecond)
    				continue
    			}
    			break
    		}
    		actions := client.Actions()
    
    		if !reflect.DeepEqual(actions, test.expectedActions) {
    			t.Errorf("Test %q: action not expected\nExpected:\n%s\ngot:\n%s", test.name, dump.Pretty(test.expectedActions), dump.Pretty(actions))
    		}
    
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
     *     <li>GROUP permissions: what actions a user, who is a member of the group that a file/directory belongs to, can perform on the file/directory</li>
     *     <li>OTHER (world) permissions: what actions all other users (non-owner, non-group) can perform on the file/directory</li>
     * </ul>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/project/PluginsProjectConfigureActions.java

        private PluginsProjectConfigureActions(Iterable<Action<ProjectInternal>> actions) {
            this.actions = actions;
        }
    
        @Override
        public void execute(ProjectInternal project) {
            for (Action<ProjectInternal> action : actions) {
                action.execute(project);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolutionResult.java

            final Set<ResolvedComponentResult> out = new LinkedHashSet<>();
            eachElement(getRoot(), Actions.doNothing(), Actions.doNothing(), out);
            return out;
        }
    
        @Override
        public void allComponents(final Action<? super ResolvedComponentResult> action) {
            eachElement(getRoot(), action, Actions.doNothing(), new HashSet<>());
        }
    
        @Override
        @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

                    }
                    visitor.visitFile(fvd)
                }
                fileTree
            }
            copySpec.walk(_) >> { Action it -> it.execute(copySpecResolver) }
        }
    
        void actions(Closure... actions) {
            copySpecResolver.allCopyActions >> actions.collect { new ClosureBackedAction<>(it) }
        }
    
        void visit() {
            executer.execute(copySpec, delegate)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. .github/workflows/submit-github-dependency-graph.yml

        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

    /**
     * <p>A {@code TaskActionListener} is notified of the actions that a task performs.</p>
     *
     * @deprecated This type is not supported when configuration caching is enabled.
     */
    @EventScope(Scope.Build.class)
    @Deprecated
    @DeprecatedInGradleScope
    public interface TaskActionListener {
        /**
         * This method is called immediately before the task starts performing its actions.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/certificates/cleaner/cleaner_test.go

    				t.Fatalf("failed to clean CSR: %v", err)
    			}
    
    			actions := client.Actions()
    			if len(actions) != len(tc.expectedActions) {
    				t.Fatalf("got %d actions, wanted %d actions", len(actions), len(tc.expectedActions))
    			}
    			for i := 0; i < len(actions); i++ {
    				if a := actions[i]; !a.Matches(tc.expectedActions[i], "certificatesigningrequests") {
    					t.Errorf("got action %#v, wanted %v", a, tc.expectedActions[i])
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 15:19:45 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

            language: ['java', 'javascript']
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          with:
            fetch-depth: 2
    
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
            java-version: '17'
            distribution: 'temurin'
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top