Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,954 for umajin (0.17 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.trid.tpt",
    				"application/vnd.triscape.mxs",
    				"application/vnd.trueapp",
    				"application/vnd.truedoc",
    				"application/vnd.ufdl",
    				"application/vnd.uiq.theme",
    				"application/vnd.umajin",
    				"application/vnd.unity",
    				"application/vnd.uoml+xml",
    				"application/vnd.uplanet.alert",
    				"application/vnd.uplanet.alert-wbxml",
    				"application/vnd.uplanet.bearer-choice",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/cmd/dist/main.go

    		useVFPv1() // might fail with SIGILL
    		println("VFPv1 OK.")
    		useVFPv3() // might fail with SIGILL
    		println("VFPv3 OK.")
    		os.Exit(0)
    	}
    
    	xinit()
    	xmain()
    	xexit(0)
    }
    
    // The OS-specific main calls into the portable code here.
    func xmain() {
    	if len(os.Args) < 2 {
    		usage()
    	}
    	cmd := os.Args[1]
    	os.Args = os.Args[1:] // for flag parsing during cmd
    	flag.Usage = func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/templates/layouts/main.html

    {{ define "main" }}
    <main>
        <div class="container-fluid">
            <div class="row row-offcanvas">
                <div class="col-0 col-md-3 col-xl-2 sidebar-offcanvas">
                    {{ template "sidebar" . }}
                </div>
    
                <div class="col-12 col-md-9 col-xl-10">
                    <main aria-labelledby="title">
                        <h1 id="title">{{template "title" .}}</h1>
                        {{ template "content" . }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 528 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    // license that can be found in the LICENSE file.
    
    // The bug happened like this:
    //  1. The main binary adds an itab for *json.UnsupportedValueError / error
    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. test/closure3.dir/main.go

    				c := 5
    				return func(z int) int { // ERROR "can inline main.func27.1.1" "can inline main.main.func27.func34.1" "can inline main.func27.main.func27.1.2" "can inline main.main.func27.main.main.func27.func34.func36"
    					return a*x + b*y + c*z
    				}(10) // ERROR "inlining call to main.func27.1.1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/go/build/testdata/other/main.go

    // Test data - not compiled.
    
    package main
    
    import (
    	"./file"
    )
    
    func main() {
    	file.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 92 bytes
    - Viewed (0)
  7. src/cmd/compile/main.go

    	"s390x":    s390x.Init,
    	"wasm":     wasm.Init,
    }
    
    func main() {
    	// disable timestamps for reproducible output
    	log.SetFlags(0)
    	log.SetPrefix("compile: ")
    
    	buildcfg.Check()
    	archInit, ok := archInits[buildcfg.GOARCH]
    	if !ok {
    		fmt.Fprintf(os.Stderr, "compile: unknown architecture %q\n", buildcfg.GOARCH)
    		os.Exit(2)
    	}
    
    	gc.Main(archInit)
    	base.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 18:14:52 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/testdata/issue42484/main.go

    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	a := 0
    	a++
    	b := 0
    	f1(a, b)
    }
    
    func f1(a, b int) {
    	fmt.Printf("%d %d\n", a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 21:10:45 UTC 2021
    - 132 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/groovy/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
Back to top