- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 632 for active (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
} /** * @return Required inactive profile identifiers, never {@code null}. */ public Set<String> getRequiredInactiveProfileIds() { return getProfileIds(pa -> !pa.optional && !pa.active); } /** * @return Optional inactive profile identifiers, never {@code null}. */ public Set<String> getOptionalInactiveProfileIds() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
tests/group_by_test.go
} var active bool if err := DB.Model(&User{}).Select("name, active, sum(age)").Where("name = ? and active = ?", "groupby", true).Group("name").Group("active").Row().Scan(&name, &active, &total); err != nil { t.Errorf("no error should happen, but got %v", err) } if name != "groupby" || active != true || total != 40 { t.Errorf("group by two columns, name %v, age %v, active: %v", name, total, active) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 3.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
} /** * @return Required inactive project selectors, never {@code null}. */ public Set<String> getRequiredInactiveProjectSelectors() { return getProjectSelectors(pa -> !pa.optional && !pa.active); } /** * @return Optional inactive project selectors, never {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java
profileManager.addProfile(notActivated); profileManager.addProfile(defaultActivated); List active = profileManager.getActiveProfiles(); assertNotNull(active); assertEquals(1, active.size()); assertEquals("defaultActivated", ((Profile) active.get(0)).getId()); } @Test void testShouldNotActivateDefaultProfile() throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/breadcrumb.jsp
<li class="breadcrumb-item active"><la:message key="labels.crud_link_edit" /></li> </c:if> <c:if test="${crudMode == 3}"> <li class="breadcrumb-item active"><la:message key="labels.crud_link_delete" /></li> </c:if> <c:if test="${crudMode == 4}"> <li class="breadcrumb-item active"><la:message key="labels.crud_link_details" /></li> </c:if>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 919 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
/** * Should the target be active? */ final boolean active; /** * Should the build continue if the target is not present? */ final boolean optional; ActivationSettings(final boolean active, final boolean optional) { this.active = active; this.optional = optional; } static ActivationSettings of(final boolean active, final boolean optional) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
.toLowerCase(Locale.ENGLISH); if (active && os.getFamily() != null) { active = determineFamilyMatch(os.getFamily(), actualOsName); } if (active && os.getName() != null) { active = determineNameMatch(os.getName(), actualOsName); } if (active && os.getArch() != null) { active = determineArchMatch(os.getArch(), actualOsArch); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
Model getEffectiveModel(); /** * Gets the profiles that were active during model building. * * @return The active profiles of the model or an empty list if the model has no active profiles. */ @Nonnull List<Profile> getActivePomProfiles(); /** * Gets the external profiles that were active during model building. External profiles are those that were
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 3.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/secret/spire/output
default Cert Chain ACTIVE false cd4902e499169b11ec171dad1668adbb 2024-10-27T22:44:37Z 2024-10-27T21:44:27Z east.local ROOTCA CA ACTIVE true 529cbbaf623611d057b517d4ffe341e4e8035037 2034-10-23T13:23:05Z 2024-10-25T13:23:05Z east.local
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 662 bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileSelector.java
/** * Calculates the active profiles among a given collection of profiles. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ProfileSelector { /** * Determines the profiles which are active in the specified activation context. Active profiles will eventually be * injected into the model. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0)