Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for xxx (0.14 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            getMockRequest().setLocale(Locale.JAPANESE);
            assertEquals("https://fess.codelibs.org/ja/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
            getMockRequest().setLocale(Locale.ITALIAN);
            assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
            getMockRequest().setLocale(null);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
  2. internal/bucket/replication/replication_test.go

    			prefix:        "prefix",
    			ExpectedRules: []Rule{{Status: Enabled, Priority: 1, DeleteMarkerReplication: DeleteMarkerReplication{Status: Enabled}, DeleteReplication: DeleteReplication{Status: Disabled}, Destination: Destination{Bucket: "destinationbucket", ARN: "arn:minio:replication:xxx::destinationbucket"}}},
    		},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

        }
    
        public void test_getConfigType() {
            assertNull(crawlingConfigHelper.getConfigType(null));
            assertNull(crawlingConfigHelper.getConfigType(""));
            assertNull(crawlingConfigHelper.getConfigType("XXX"));
            assertNull(crawlingConfigHelper.getConfigType("W"));
            assertNull(crawlingConfigHelper.getConfigType("F"));
            assertNull(crawlingConfigHelper.getConfigType("D"));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/ast.go

    }
    
    // ParseGo populates f with information learned from the Go source code
    // which was read from the named file. It gathers the C preamble
    // attached to the import "C" comment, a list of references to C.xxx,
    // a list of exported functions, and the actual AST, to be rewritten and
    // printed.
    func (f *File) ParseGo(abspath string, src []byte) {
    	// Two different parses: once with comments, once without.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_de.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # you can define your messages here:
    # e.g.
    #  errors.xxx = ...
    #  info.xxx = ...
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Fess
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Oct 29 15:01:03 GMT 2019
    - 11.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_en.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # you can define your messages here:
    # e.g.
    #  errors.xxx = ...
    #  info.xxx = ...
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Fess
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/input.go

    	}
    	fmt.Fprintf(os.Stderr, "%s:%d: %s", in.File(), in.Line(), fmt.Sprintln(args...))
    	os.Exit(1)
    }
    
    // expectText is like Error but adds "got XXX" where XXX is a quoted representation of the most recent token.
    func (in *Input) expectText(args ...interface{}) {
    	in.Error(append(args, "; got", strconv.Quote(in.Stack.Text()))...)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ru.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # you can define your messages here:
    # e.g.
    #  errors.xxx = ...
    #  info.xxx = ...
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Fess
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_fr.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # you can define your messages here:
    # e.g.
    #  errors.xxx = ...
    #  info.xxx = ...
    # _/_/_/_/_/_/_/_/_/_/
    # ========================================================================================
    #                                                                                    Fess
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    	_cgo_export.h   # for gcc
    	_cgo_main.c     # for gcc
    	_cgo_flags      # for build tool (if -gccgo)
    
    The file x.cgo1.go is a copy of x.go with the import "C" removed and
    references to C.xxx replaced with names like _Cfunc_xxx or _Ctype_xxx.
    The definitions of those identifiers, written as Go functions, types,
    or variables, are provided in _cgo_gotypes.go.
    
    Here is a _cgo_gotypes.go containing definitions for needed C types:
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
Back to top