- Sort Score
- Result 10 results
- Languages All
Results 3551 - 3560 of 5,478 for newE (0.02 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultLegacySupport.java
* * @since 3.0 */ @Named @Singleton public class DefaultLegacySupport implements LegacySupport { private static final ThreadLocal<AtomicReference<MavenSession>> SESSION = new InheritableThreadLocal<>(); @Override public void setSession(MavenSession session) { AtomicReference<MavenSession> reference = DefaultLegacySupport.SESSION.get(); if (reference != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java
public class InvalidRepositoryException extends Exception { /** * The repository that raised this error, can be {@code null}. */ private Repository repository; /** * Creates a new exception with specified detail message and cause for the given repository. * * @param message The detail message, may be {@code null}. * @param repository The repository that caused the error, may be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jConfigurationFactory.java
URL resource = resources.nextElement(); try { InputStream is = resource.openStream(); final Properties properties = new Properties(); if (is != null) { try (InputStream in = is) { properties.load(in); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/ExtensionConfigurationModule.java
public class ExtensionConfigurationModule implements Module { private final CoreExtensionEntry extension; private final UnaryOperator<String> callback; private final DefaultInterpolator interpolator = new DefaultInterpolator(); public ExtensionConfigurationModule(CoreExtensionEntry extension, UnaryOperator<String> callback) { this.extension = extension; this.callback = callback; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 2.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/logging/SystemLogger.java
public SystemLogger(@Nullable OutputStream out) { this(out, null); } public SystemLogger(@Nullable OutputStream out, @Nullable Level threshold) { this.out = new PrintWriter(toPsOrDef(out, System.err), true); this.threshold = Objects.requireNonNullElse(threshold, Level.INFO); } private PrintStream toPsOrDef(OutputStream outputStream, PrintStream def) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Feb 08 16:25:25 UTC 2025 - 2.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AtomicsTest.java
/** * Unit test for {@link Atomics}. * * @author Kurt Alfred Kluever */ @NullUnmarked public class AtomicsTest extends TestCase { private static final Object OBJECT = new Object(); public void testNewReference() throws Exception { assertEquals(null, Atomics.newReference().get()); } public void testNewReference_withInitialValue() throws Exception {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/LatestArtifactTransformation.java
throw new ArtifactNotFoundException("Unable to determine the latest version", artifact); } artifact.setBaseVersion(version); artifact.updateVersion(version, request.getLocalRepository()); } catch (RepositoryMetadataResolutionException e) { throw new ArtifactResolutionException(e.getMessage(), artifact, e); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.9K bytes - Viewed (0) -
internal/config/identity/openid/provider/provider.go
type User struct { Name string `json:"username"` ID string `json:"id"` Enabled bool `json:"enabled"` } // Standard errors. var ( ErrNotImplemented = errors.New("function not implemented") ErrAccessTokenExpired = errors.New("access_token expired or unauthorized") ) // Provider implements identity provider specific admin operations, such as // looking up users, fetching additional attributes etc.Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 2.7K bytes - Viewed (0) -
src/bytes/bytes_test.go
old = []byte(tt.old) new = []byte(tt.new) ) if !asan.Enabled { allocs := testing.AllocsPerRun(10, func() { Replace(in, old, new, tt.n) }) if allocs > 1 { t.Errorf("Replace(%q, %q, %q, %d) allocates %.2f objects", tt.in, tt.old, tt.new, tt.n, allocs) } } in = append(in, "<spare>"...) in = in[:len(tt.in)] out := Replace(in, old, new, tt.n) if s := string(out); s != tt.out {Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 23 23:54:14 UTC 2025 - 62.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsFavoriteLogCQ.java
FavoriteLogCQ cq = new FavoriteLogCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) { functionsLambda.callback((cqLambda, scoreFunctionBuilder) -> { FavoriteLogCQ cf = new FavoriteLogCQ(); cqLambda.callback(cf);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 42.7K bytes - Viewed (0)