Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,011 for permission (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                return null;
            }
            if (permission.startsWith(fessConfig.getRoleSearchUserPrefix())
                    && permission.length() > fessConfig.getRoleSearchUserPrefix().length()) {
                return aclPrefix + userPrefix + permission.substring(fessConfig.getRoleSearchUserPrefix().length());
            }
            if (permission.startsWith(fessConfig.getRoleSearchGroupPrefix())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. android-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.test">
    
      <uses-permission android:name="android.permission.INTERNET" />
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    
      <application android:usesCleartextTraffic="true" tools:targetApi="m"/>
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 387 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            assertNotNull(timeout.getCause());
    
            // Scenario 3: Permission denied
            CommandExecutionException permissionDenied = new CommandExecutionException("Permission denied: cannot execute command");
            assertTrue(permissionDenied.getMessage().contains("Permission denied"));
    
            // Scenario 4: Exit code error
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. okhttp/src/androidMain/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
              package="okhttp.okhttp3">
    
      <uses-permission android:name="android.permission.INTERNET"/>
    
      <application>
        <provider
          android:name="androidx.startup.InitializationProvider"
          android:authorities="${applicationId}.androidx-startup"
          android:exported="false"
          tools:node="merge">
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 604 bytes
    - Viewed (0)
  5. android-test-app/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
      <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:name=".TestApplication"
      >
        <activity
          android:name=".MainActivity"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Aug 19 08:10:39 UTC 2025
    - 992 bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/fe.tld

        <example>${fe:message("labels.foobar", "default value")}</example>
      </function>
    
      <function>
        <description>Check if user has a permission.</description>
        <name>permission</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>boolean hasActionRole(java.lang.String)</function-signature>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            LOGIN_FAILURE,
            /**
             * The update permission action.
             */
            UPDATE_PERMISSION;
        }
    
        /**
         * Set the logger name.
         * @param loggerName The logger name.
         */
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    
        /**
         * Set the permission separator.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  8. LICENSES/vendor/github.com/Microsoft/hnslib/LICENSE

    = vendor/github.com/Microsoft/hnslib licensed under: =
    
    MIT License
    
    Copyright (c) 2024 Microsoft
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Oct 14 17:44:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/FessUser.java

        /**
         * Gets the user's assigned group names.
         * @return Array of group names.
         */
        String[] getGroupNames();
    
        /**
         * Gets the user's permissions.
         * @return Array of permission strings.
         */
        String[] getPermissions();
    
        /**
         * Determines if the user's information can be edited.
         * @return True if the user's information is editable, false otherwise.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/golang-jwt/jwt/v5/LICENSE

    = vendor/github.com/golang-jwt/jwt/v5 licensed under: =
    
    Copyright (c) 2012 Dave Grijalva
    Copyright (c) 2021 golang-jwt maintainers
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 16 01:19:11 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top