- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 402 for Escape (0.41 sec)
-
docs/em/docs/tutorial/security/simple-oauth2.md
& ๐ ๐ฝ ๐ท ๐ช โ๏ธ ๐ ๐ ๐ ๐ ๐. โ๏ธ ๐ณ *โก ๐ ๏ธ*, ๐ฅ ๐ช โ๏ธ ๐ ๐ ๐ โฎ๏ธ ๐ (& ๐ช, ๐ผ, โ๏ธ ๐ ๏ธ ๐ ๏ธ ๐งพ โ๏ธ). ๐ ๐ต๐ธ ๐ `username` & `password` ๐ ๐จ ๐จ ๐ฝ (, ๐ โโ ๐ป ๐ฅ). ### `scope` ๐ ๐ฌ ๐ ๐ฉโ๐ป ๐ช ๐จ โ1๏ธโฃ ๐จ ๐ "`scope`". ๐จ ๐ ๐ `scope` (โญ), โ๏ธ โซ๏ธ ๐ค ๐ ๐ป โฎ๏ธ "โ" ๐ ๐. ๐ "โ" ๐ป (๐ต ๐). ๐ซ ๐ โ๏ธ ๐ฃ ๐ฏ ๐โโ โ, ๐ผ: * `users:read` โ๏ธ `users:write` โ ๐ผ. * `instagram_basic` โ๏ธ ๐ฑ๐ / ๐ฑ๐.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
// Expected due to missing dependencies in test environment assertTrue(true); return; } // assertEquals(0, result.size()); // Commented out due to variable scope } public void test_getBoostedDocumentList_withVirtualHost() { KeyMatch keyMatch = new KeyMatch(); keyMatch.setId("km1"); keyMatch.setTerm("java");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
private final String scope; TestNetbiosName(String name, int type, String scope) { // Ensure names are uppercase and limited to 15 characters this.name = name != null && name.length() > 15 ? name.substring(0, 15).toUpperCase() : (name != null ? name.toUpperCase() : ""); this.type = type; this.scope = scope; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/head.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" /> <link href="${fe:url('/css/admin/font-awesome.min.css')}" rel="stylesheet" type="text/css" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 12:21:50 UTC 2020 - 984 bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t11/ProjectInheritanceTest.java
import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; /** * Verifies scope of root project is preserved regardless of parent dependency management. * * @see <a href="https://issues.apache.org/jira/browse/MNG-2919">MNG-2919</a> */ @Deprecated @SuppressWarnings("checkstyle:UnusedLocalVariable")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
int leaseState = DirectoryLeaseState.DIRECTORY_READ_HANDLE; DirectoryCacheScope scope = DirectoryCacheScope.IMMEDIATE_CHILDREN; DirectoryLeaseContext context = new DirectoryLeaseContext(key, leaseState, scope); assertEquals(key, context.getLeaseKey()); assertEquals(leaseState, context.getLeaseState()); assertEquals(scope, context.getCacheScope()); assertEquals(30000L, context.getMaxCacheAge());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/NetbiosName.java
*/ public interface NetbiosName { /** * Returns the NetBIOS name. * * @return the name */ String getName(); /** * Returns the NetBIOS scope identifier. * * @return the scope id */ String getScope(); /** * Returns the NetBIOS name type. * * @return the name type */ int getNameType();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
public ClasspathContainer transform(MetadataGraph dirtyGraph, ArtifactScopeEnum scope, boolean resolve) throws MetadataGraphTransformationException { try { if (dirtyGraph == null || dirtyGraph.isEmpty()) { return null; } MetadataGraph cleanGraph = conflictResolver.resolveConflicts(dirtyGraph, scope); if (cleanGraph == null || cleanGraph.isEmpty()) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java
*/ @Experimental @Immutable @SuppressWarnings("checkstyle:InterfaceIsType") public interface ProjectScope extends ExtensibleEnum { /** * Main scope. */ ProjectScope MAIN = projectScope("main"); /** * Test scope. */ ProjectScope TEST = projectScope("test");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 05 09:42:51 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/test/projects/project-dependencies-resolver/project-with-exclusions/pom.xml
<version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.apache.maven.its</groupId> <artifactId>maven-core-it-support</artifactId> <version>1.3</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </exclusion> </exclusions> </dependency> </dependencies>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0)