- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,057 for phrase (0.13 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java
*/ public java.util.List<Phase> getPhases() { if (this.phases == null) { this.phases = new java.util.ArrayList<Phase>(); } return this.phases; } // -- java.util.List<Phase> getPhases() /** * Method removePhase. * * @param phase a phase object. */ public void removePhase(Phase phase) { getPhases().remove(phase);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
internal/config/notify/parse.go
logger.LogOnceIf(ctx, logSubsys, err, id, errKind...) } // ErrTargetsOffline - Indicates single/multiple target failures. var ErrTargetsOffline = errors.New("one or more targets are offline. Please use `mc admin info --json` to check the offline targets") // TestSubSysNotificationTargets - tests notification targets of given subsystem
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 47K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
return Optional.empty(); } /** * A phase in the lifecycle. * * A phase is identified by its name. It also contains a list of plugins bound to that phase, * a list of {@link Link links}, and a list of sub-phases. This forms a tree of phases. */ interface Phase { // ====================== // Maven defined phases // ======================
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
import static org.apache.maven.api.Lifecycle.Phase.RESOURCES; import static org.apache.maven.api.Lifecycle.Phase.SOURCES; import static org.apache.maven.api.Lifecycle.Phase.TEST; import static org.apache.maven.api.Lifecycle.Phase.TEST_COMPILE; import static org.apache.maven.api.Lifecycle.Phase.TEST_RESOURCES; import static org.apache.maven.api.Lifecycle.Phase.TEST_SOURCES; import static org.apache.maven.api.Lifecycle.Phase.UNIT_TEST;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 19.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
log.Fatal("too many errors") } } func (p *Parser) pos() src.XPos { return p.ctxt.PosTable.XPos(src.MakePos(p.lex.Base(), uint(p.lineNum), 0)) } func (p *Parser) Parse() (*obj.Prog, bool) { scratch := make([][]lex.Token, 0, 3) for { word, cond, operands, ok := p.line(scratch) if !ok { break } scratch = operands if p.pseudo(word, operands) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/lifecycle.mdo
</field> <field> <name>phases</name> <version>1.0.0+</version> <description>The phase mappings for this lifecycle.</description> <association> <type>Phase</type> <multiplicity>*</multiplicity> </association> </field> </fields> </class> <class> <name>Phase</name> <version>1.0.0+</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
} /** * Get lifecycle based on phase * * @param phase * @return */ public Lifecycle get(String phase) { return getPhaseToLifecycleMap().get(phase); } /** * We use this to map all phases to the lifecycle that contains it. This is used so that a user can specify the * phase they want to execute and we can easily determine what lifecycle we need to run.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
src/packaging/common/scripts/postinst
echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig" echo " sudo chkconfig --add fess" echo "### You can start fess service by executing" echo " sudo service fess start" elif command -v update-rc.d >/dev/null; then
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 3.1K bytes - Viewed (0) -
SECURITY.md
outside of the safe formats, etc.) are not treated as vulnerabilities. ### Reporting process Please use [Google Bug Hunters reporting form](https://g.co/vulnz) to report security vulnerabilities. Please include the following information along with your report: - A descriptive title - Your name and affiliation (if any).
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 16:10:43 UTC 2024 - 9.6K bytes - Viewed (0)