Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
12 views

I am using AccessibilityService in AndroidStudio for an app which is going to access an another app. In a view there is not available actions of "ACTION_CLICK". Its sealed and I am getting ...
ronihasan's user avatar
0 votes
0 answers
15 views

Context: I am trying to build a Spring Boot application and have exposed a REST api endpoint to upload files(as large as 1 GB). Question: Since the data transfer for a multipart file happens in chunks ...
Aakash_Deep's user avatar
0 votes
0 answers
26 views

I'm making a Java app that scans the Windows Recent Files folder and resolves .lnk shorcuts to their actual file paths. I'm doing so using JNA the JNA API and simulating IShellLinkW and IPersistFile. ...
Syed Maroof Hussain's user avatar
0 votes
0 answers
25 views

I am having trouble wrapping my head around subclass mappings. I have 3 classes: @Data public class Parent { long id; String name; public boolean isEmpty() { return StringUtils.isEmpty(name)...
bkqdad's user avatar
  • 27
0 votes
2 answers
93 views

I recently solved the Merge Sorted Array question on leetcode Here is the part of the code I am having doubts on : while (curr >= 0 && p1 >= 0 && p2 >= 0) { // more TC if ...
Suswetha's user avatar
0 votes
0 answers
136 views

I'm interesting in possible implementation approaches for a quite special variant of a list, with the following requirements: Efficient inverse lookup ("index of"): "give me an index ...
cubuspl42's user avatar
  • 8,581
0 votes
0 answers
21 views

I'm setting up the environment for a project of the company I work for. It's a multi module backend runing Spring Boot. I didn't have problems with most of the setup, but one of the project's modules, ...
VFMiracle's user avatar
-10 votes
0 answers
47 views

You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top? class Solution { public int ...
user31921588's user avatar
Advice
0 votes
2 replies
44 views

why can we subscribe as may as we want from reactor publisher but just one time from java stream api?What reason is there for stream to be one time use?
AMZ's user avatar
  • 400
Advice
0 votes
1 replies
33 views

I am working on BridgeLink 4.6.0, and I need to validate XML files (CCD/CCDA) using XSD schemas. Earlier versions of BridgeLink allowed Java access inside JavaScript (e.g., Java.type, Java.extend, ...
Arjun Asokan's user avatar
-5 votes
0 answers
48 views

How do you even load a captcha from one browser onto another/ even see the problem? does anyone have code examples how you can sort of stream captchas from a page to a secondary page? or just even ...
Callum Henderson's user avatar