- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 3,706 for private (0.04 sec)
-
android/guava/src/com/google/common/eventbus/Subscriber.java
} /** The event bus this subscriber belongs to. */ @Weak private final EventBus bus; /** The object with the subscriber method. */ @VisibleForTesting final Object target; /** Subscriber method. */ private final Method method; /** Executor to use for dispatching events to this subscriber. */ private final Executor executor; private Subscriber(EventBus bus, Object target, Method method) { this.bus = bus;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 4.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/GraphEquivalenceTest.java
@RunWith(Parameterized.class) @NullUnmarked public final class GraphEquivalenceTest { private static final Integer N1 = 1; private static final Integer N2 = 2; private static final Integer N3 = 3; private final EdgeType edgeType; private final MutableGraph<Integer> graph; // add parameters: directed/undirected @Parameters public static Collection<Object[]> parameters() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/PluginTests.java
@Tag("it") public class PluginTests extends CrudTestBase { private static final String NAME_PREFIX = "pluginTests_"; private static final String API_PATH = "/api/admin/plugin"; private static final String LIST_ENDPOINT_SUFFIX = ""; private static final String ITEM_ENDPOINT_SUFFIX = ""; private static final String INSTALLED_ENDPOINT_SUFFIX = "installed"; private static final String AVAILABLE_ENDPOINT_SUFFIX = "available";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
val model: CIBuildModel, testBucketsJson: File, ) : FunctionalTestBucketProvider { private val allCrossVersionTestBucketProvider = CrossVersionTestBucketProvider(ALL_CROSS_VERSION_BUCKETS, model) private val quickCrossVersionTestBucketProvider = CrossVersionTestBucketProvider(QUICK_CROSS_VERSION_BUCKETS, model) private val functionalTestBucketProvider = StatisticBasedFunctionalTestBucketProvider(model, testBucketsJson)
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 05:08:24 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/QuantilesTest.java
private static final ImmutableList<Integer> SIXTEEN_SQUARES_INTEGERS = ImmutableList.of(25, 100, 0, 144, 9, 121, 4, 225, 169, 64, 49, 16, 36, 1, 81, 196); private static final double SIXTEEN_SQUARES_MIN = 0.0; private static final double SIXTEEN_SQUARES_DECILE_1 = 0.5 * (1.0 + 4.0); private static final double SIXTEEN_SQUARES_QUARTILE_1 = 0.25 * 9.0 + 0.75 * 16.0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 29.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/QuantilesTest.java
private static final ImmutableList<Integer> SIXTEEN_SQUARES_INTEGERS = ImmutableList.of(25, 100, 0, 144, 9, 121, 4, 225, 169, 64, 49, 16, 36, 1, 81, 196); private static final double SIXTEEN_SQUARES_MIN = 0.0; private static final double SIXTEEN_SQUARES_DECILE_1 = 0.5 * (1.0 + 4.0); private static final double SIXTEEN_SQUARES_QUARTILE_1 = 0.25 * 9.0 + 0.75 * 16.0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 29.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
private final SmbSessionImpl session; private volatile int tid = -1; private volatile String service = "?????"; private volatile boolean inDfs, inDomainDfs; private volatile long treeNum; // used by SmbFile.isOpen private final AtomicLong usageCount = new AtomicLong(0); private final AtomicBoolean sessionAcquired = new AtomicBoolean(true); private final boolean traceResource;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private static final int MAX_REDIRECTS = Integer.getInteger("http.maxRedirects", 20); private static final int LM_COMPATIBILITY = Config.getInt("jcifs.smb1.smb.lmCompatibility", 0); private static final String DEFAULT_DOMAIN; private HttpURLConnection connection; private final Map requestProperties; private Map headerFields;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Role.java
import java.util.HashMap; import java.util.Map; import org.codelibs.fess.opensearch.user.bsentity.BsRole; /** * @author FreeGen */ public class Role extends BsRole { private static final long serialVersionUID = 1L; private Map<String, String> attributes; public Long getVersionNo() { return asDocMeta().version(); } public void setVersionNo(final Long version) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreUpdater.java
*/ public class ScoreUpdater { /** * Constructor. */ public ScoreUpdater() { super(); } private static final Logger logger = LogManager.getLogger(ScoreUpdater.class); private final List<ScoreBooster> scoreBoosterList = new ArrayList<>(); /** * Executes all score boosters. * @return The result of the execution. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0)