Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,086 for permission (0.04 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. regression-test/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="okhttp.android.regression">
      <uses-permission android:name="android.permission.INTERNET" />
    
      <!-- For HttpEngine -->
      <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Mar 23 11:14:34 UTC 2024
    - 291 bytes
    - Viewed (0)
  3. LICENSES/vendor/github.com/go-task/slim-sprig/v3/LICENSE

    = vendor/github.com/go-task/slim-sprig/v3 licensed under: =
    
    Copyright (C) 2013-2020 Masterminds
    
    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 May 27 13:25:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. LICENSES/vendor/github.com/fxamacker/cbor/v2/LICENSE

    = vendor/github.com/fxamacker/cbor/v2 licensed under: =
    
    MIT License
    
    Copyright (c) 2019-present Faye Amacker
    
    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: Thu Jan 25 13:35:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top