- Sort Score
- Num 10 results
- Language All
Results 3241 - 3250 of 5,478 for newE (0.04 seconds)
-
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
volatile int remainingField; private static final AtomicHelper ATOMIC_HELPER; private static final LazyLogger log = new LazyLogger(AggregateFutureState.class); static { AtomicHelper helper; Throwable thrownReflectionFailure = null; try { helper = new SafeAtomicHelper(); } catch (Throwable reflectionFailure) { // sneaky checked exception
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 8.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
* Updates the model version element in a POM document. * * @param pomDocument the POM document (domtrip Document) * @param newVersion the new model version */ public static void updateModelVersion(Document pomDocument, String newVersion) { Editor editor = new Editor(pomDocument); Element root = editor.root(); if (root == null) { return; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 9.5K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
private static final Pattern SETTER_METHOD_NAME = Pattern.compile("set(.+)"); private final List<ClassMetaData> allClasses = new ArrayList<ClassMetaData>(); private final Deque<ClassMetaData> classStack = new LinkedList<ClassMetaData>(); private String packageName; @Override public void visit(CompilationUnit compilationUnit, ClassMetaDataRepository<ClassMetaData> repository) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 19 15:07:24 GMT 2024 - 11.8K bytes - Click Count (0) -
src/bufio/bufio_test.go
t.Errorf("want=%q", data[:len(written)]) t.Errorf("have=%q", written) } } } } } func TestWriterAppend(t *testing.T) { got := new(bytes.Buffer) var want []byte rn := rand.New(rand.NewSource(0)) w := NewWriterSize(got, 64) for i := 0; i < 100; i++ { // Obtain a buffer to append to. b := w.AvailableBuffer() if w.Available() != cap(b) {
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Feb 07 01:08:54 GMT 2025 - 51.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java
if (structureSize == 9) { return this.readErrorResponse(buffer, bufferIndex); } if (structureSize != 17) { throw new SMBProtocolDecodingException("Expected structureSize = 17"); } final short dataOffset = buffer[bufferIndex + 2]; bufferIndex += 4; this.dataLength = SMBUtil.readInt4(buffer, bufferIndex);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 6.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
int readDataWireFormat(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex; ServerInfo1 e = null; results = new ServerInfo1[numEntries]; for (int i = 0; i < numEntries; i++) { results[i] = e = new ServerInfo1(); e.name = readString(buffer, bufferIndex, 16, false); bufferIndex += 16; e.versionMajor = buffer[bufferIndex] & 0xFF;
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/RoleDbm.java
// Singleton // ========= private static final RoleDbm _instance = new RoleDbm(); private RoleDbm() { } public static RoleDbm getInstance() { return _instance; } // ===================================================================================Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 7.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java
Files.copy(current.toPath(), result.toPath()); } ArtifactRepository localRepo = new MetadataRepository(result); metadata.storeInLocalRepository(localRepo, localRepo); merged = true; } catch (Exception e) { throw new RepositoryException(e.getMessage(), e); } } @Override public boolean isMerged() { return merged;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java
} } LinkedHashMap<String, CoreExtension> selectedExtensions = new LinkedHashMap<>(); List<String> conflicts = new ArrayList<>(); for (CoreExtensions coreExtensions : configuredCoreExtensions) { for (CoreExtension coreExtension : coreExtensions.coreExtensions()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 15:32:43 GMT 2025 - 4.6K bytes - Click Count (0)