Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 545 for performer (0.07 seconds)

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

        //                                                                              Method
        //                                                                      ==============
    
        /**
         * Performs a search operation and populates the search render data with results.
         *
         * This method handles the complete search workflow including parameter processing,
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/xml/XmlEscapers.java

       * Specifically "\r" (carriage return) is preserved in the output, which may result in it being
       * silently converted to "\n" when the XML is parsed.
       *
       * <p>This escaper does not treat surrogate pairs specially and does not perform Unicode
       * validation on its input.
       */
      public static Escaper xmlContentEscaper() {
        return XML_CONTENT_ESCAPER;
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 17:06:34 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  3. docs/sts/README.md

    ### Setup MinIO with Identity Provider
    
    Make sure we have followed the previous step and configured each software independently, once done we can now proceed to use MinIO STS API and MinIO server to use these credentials to perform object API operations.
    
    #### KeyCloak
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/ImmutableMultimap.java

       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * @throws NullPointerException if any key or value in {@code multimap} is null
       */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Dec 09 15:58:48 GMT 2025
    - 27.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

            //return OptionalThing.of(fessConfig.getCookieRememberMeFessKey());
            return OptionalThing.empty();
        }
    
        /**
         * Saves the login history for the given user.
         * This operation is performed asynchronously.
         *
         * @param user the user entity
         * @param userBean the user bean
         * @param option the login specified option
         */
        @Override
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcError.java

         * Generic fault code for other errors
         */
        int DCERPC_FAULT_OTHER = 0x00000001;
        /**
         * Access denied fault code
         */
        int DCERPC_FAULT_ACCESS_DENIED = 0x00000005;
        /**
         * Cannot perform operation fault code
         */
        int DCERPC_FAULT_CANT_PERFORM = 0x000006D8;
        /**
         * NDR encoding error fault code
         */
        int DCERPC_FAULT_NDR = 0x000006F7;
        /**
         * Invalid tag fault code
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         *
         * @param uri the namespace URI, or empty string if none
         * @param localName the local name without prefix, or empty string if namespace processing is not performed
         * @param qName the qualified name with prefix, or empty string if qualified names are not available
         * @param attributes the attributes attached to the element
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  8. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         */
        public static final int FILE_NO_IMTERMEDIATE_BUFFERING = 0x8;
        /**
         * All operations on the file are performed synchronously with alerts
         */
        public static final int FILE_SYNCHRONOUS_IO_ALERT = 0x10;
        /**
         * All operations on the file are performed synchronously without alerts
         */
        public static final int FILE_SYNCHRONOUS_IO_NONALERT = 0x20;
        /**
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 22.9K bytes
    - Click Count (0)
  9. internal/bucket/encryption/bucket-sse-config_test.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package sse
    
    import (
    	"bytes"
    	"encoding/xml"
    	"errors"
    	"testing"
    )
    
    // TestParseBucketSSEConfig performs basic sanity tests on ParseBucketSSEConfig
    func TestParseBucketSSEConfig(t *testing.T) {
    	actualAES256NoNSConfig := &BucketSSEConfig{
    		XMLName: xml.Name{
    			Local: "ServerSideEncryptionConfiguration",
    		},
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 16 18:28:30 GMT 2022
    - 6.1K bytes
    - Click Count (0)
  10. docs/pt/docs/advanced/advanced-dependencies.md

    A intenção era evitar manter recursos por mais tempo que o necessário, esperando a resposta percorrer a rede.
    
    Essa mudança também significava que, se você retornasse um `StreamingResponse`, o código de saída da dependência com `yield` já teria sido executado.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 20:32:40 GMT 2025
    - 10K bytes
    - Click Count (0)
Back to Top