Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for _Cid (0.03 sec)

  1. schema/naming_test.go

    		TablePrefix:   "public.",
    		SingularTable: true,
    		NameReplacer: CustomReplacer{
    			func(name string) string {
    				replaced := "REPLACED_" + strings.ToUpper(name)
    				return strings.NewReplacer("CID", "_Cid").Replace(replaced)
    			},
    		},
    		NoLowerCase: false,
    	}
    
    	idxName := ns.IndexName("public.table", "name")
    	if idxName != "idx_public_table_replaced_name" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue May 30 02:00:48 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"default_crawler"}}
    {"name":"Default Crawler","target":"all","cronExpression":"0 0 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"crawlJob\").logLevel(\"info\").gcLogging().execute(executor);","jobLogging":true,"crawler":true,"available":true,"sortOrder":1,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    {"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

                // this script is tested on Linux and MacOSX
                def killScript = '''
    killtree() {
        local _pid=$1
        for _child in $(ps -o pid,ppid -ax | awk "{ if ( \\$2 == ${_pid} ) { print \\$1 }}"); do
            killtree ${_child}
        done
        kill -9 ${_pid}
    }
    '''
                killScript += killTree ? "\nkilltree $pid\n" : "\nkill -9 $pid\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_user.role/role.bulk

    {"index":{"_index":"fess_user.role","_id":"YWRtaW4="}}
    {"name":"admin"}
    {"index":{"_index":"fess_user.role","_id":"Z3Vlc3Q="}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 144 bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/rpc.idl

    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    	 *     UCHAR Value[6];
    	 * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
    	 * 
    	 * #define SECURITY_NT_AUTHORITY           {0,0,0,0,0,5}
    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    	 *     UCHAR Value[6];
    	 * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
    	 * 
    	 * #define SECURITY_NT_AUTHORITY           {0,0,0,0,0,5}
    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            sentIndex.set(null);
            sentDocList.clear();
            docList.add(new HashMap<>(Map.of(//
                    "_id", "001", //
                    "config_id", "W01", //
                    "url", "http://test.com/001"//
            )));
            docList.add(new HashMap<>(Map.of(//
                    "_id", "002", //
                    "thumbnail", "http://test.com/002", //
                    "url", "http://test.com/002"//
            )));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsCrawlingInfoCB.java

            return (CrawlingInfoCB) this;
        }
    
        @Override
        public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) {
            acceptPK((String) primaryKeyMap.get("_id"));
        }
    
        // ===================================================================================
        //                                                                               Build
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsGroupCB.java

            return (GroupCB) this;
        }
    
        @Override
        public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) {
            acceptPK((String) primaryKeyMap.get("_id"));
        }
    
        // ===================================================================================
        //                                                                               Build
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess_user.user/user.bulk

    {"index":{"_index":"fess_user.user","_id":"YWRtaW4="}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 12 13:23:26 UTC 2023
    - 166 bytes
    - Viewed (0)
Back to top