Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for frog (0.06 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    		if p.From.Type == obj.TYPE_CONST {
    			if p.From.Offset > BIG || p.From.Offset < -BIG {
    				c.ctxt.Diag("illegal syscall, sysnum too large: %v", p)
    			}
    			o1 = AOP_IRR(OP_ADDI, REGZERO, REGZERO, uint32(p.From.Offset))
    		} else if p.From.Type == obj.TYPE_REG {
    			o1 = LOP_RRR(OP_OR, REGZERO, uint32(p.From.Reg), uint32(p.From.Reg))
    		} else {
    			c.ctxt.Diag("illegal syscall: %v", p)
    			o1 = 0x7fe00008 // trap always
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/pack/pack_test.go

    	testenv.MustHaveGoBuild(t)
    	testenv.MustInternalLink(t, false)
    
    	dir := t.TempDir()
    	hello := filepath.Join(dir, "hello.go")
    	prog := `
    		package main
    		func main() {
    			println("hello world")
    		}
    	`
    	err := os.WriteFile(hello, []byte(prog), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	run := func(args ...string) string {
    		return doRun(t, dir, args...)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/os/exec/lp_windows.go

    	return lookPath(file, pathExt())
    }
    
    // lookExtensions finds windows executable by its dir and path.
    // It uses LookPath to try appropriate extensions.
    // lookExtensions does not search PATH, instead it converts `prog` into `.\prog`.
    //
    // If the path already has an extension found in PATHEXT,
    // lookExtensions returns it directly without searching
    // for additional extensions. For example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    [[plugin_basics]]
    = Plugin Basics
    
    Gradle is built on a plugin system.
    Gradle itself is primarily composed of infrastructure, such as a sophisticated dependency resolution engine.
    The rest of its functionality comes from plugins.
    
    A plugin is a piece of software that *provides additional functionality to the Gradle build system*.
    
    image::gradle-basic-6.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/shared_test.go

    		}
    	}
    }
    
    // Is a given offset into the file contained in a loaded segment?
    func isOffsetLoaded(f *elf.File, offset uint64) bool {
    	for _, prog := range f.Progs {
    		if prog.Type == elf.PT_LOAD {
    			if prog.Off <= offset && offset < prog.Off+prog.Filesz {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    func rnd(v int32, r int32) int32 {
    	if r <= 0 {
    		return v
    	}
    	v += r - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/handlers_test.go

    			PodIP: "233.252.0.1",
    			HTTPGet: &v1.HTTPGetAction{
    				Path:        "foo#frag",
    				Port:        intstr.FromString("80"),
    				Scheme:      "http",
    				HTTPHeaders: []v1.HTTPHeader{},
    			},
    			Expected: expected{
    				OldURL:    "http://233.252.0.1:80/foo#frag",
    				OldHeader: http.Header{},
    				NewURL:    "http://233.252.0.1:80/foo#frag",
    				NewHeader: http.Header{
    					"Accept":     {"*/*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    to the pavement, and accumulating at compound interest.  	Fog everywhere. Fog up the river, where it flows among green aits and meadows; fog down the river, where it rolls defiled among the tiers of shipping and the waterside pollutions of a great (and dirty) city. Fog on the Essex marshes, fog on the Kentish heights. Fog creeping into the cabooses of collier-brigs; fog lying out on the yards and hovering in the rigging of great ships; fog drooping on the gunwales of barges and small boats. Fog in...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm64.go

    // It returns a boolean to indicate success; failure means
    // cond was unrecognized.
    func ARM64Suffix(prog *obj.Prog, cond string) bool {
    	if cond == "" {
    		return true
    	}
    	bits, ok := parseARM64Suffix(cond)
    	if !ok {
    		return false
    	}
    	prog.Scond = bits
    	return true
    }
    
    // parseARM64Suffix parses the suffix attached to an ARM64 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// only waste 9 bytes anyway.
    	const maxFrameSize = 16384
    
    	first := true
    	for len(headerBlock) > 0 {
    		frag := headerBlock
    		if len(frag) > maxFrameSize {
    			frag = frag[:maxFrameSize]
    		}
    		headerBlock = headerBlock[len(frag):]
    		if err := fn(ctx, frag, first, len(headerBlock) == 0); err != nil {
    			return err
    		}
    		first = false
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. fastapi/__init__.py

    from .param_functions import File as File
    from .param_functions import Form as Form
    from .param_functions import Header as Header
    from .param_functions import Path as Path
    from .param_functions import Query as Query
    from .param_functions import Security as Security
    from .requests import Request as Request
    from .responses import Response as Response
    from .routing import APIRouter as APIRouter
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top