Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for retlarge (0.23 sec)

  1. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			}
    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, in particular, too-far
    // conditional branches are fixed, and also verify that the
    // instruction's pc can be correctly aligned even when branches
    // need to be fixed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/objz.go

    				p2.To.SetTarget(q)
    			}
    
    		case obj.ARET:
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    					p.From = obj.Addr{}
    					if retTarget == nil {
    						p.To.Type = obj.TYPE_REG
    						p.To.Reg = REG_LR
    					} else {
    						p.To.Type = obj.TYPE_BRANCH
    						p.To.Sym = retTarget
    					}
    					p.Mark |= BRANCH
    					break
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    				break
    			}
    
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    					p.From = obj.Addr{}
    					if retTarget == nil {
    						p.To.Type = obj.TYPE_REG
    						p.To.Reg = REG_LR
    					} else {
    						p.To.Type = obj.TYPE_BRANCH
    						p.To.Sym = retTarget
    					}
    					p.Mark |= BRANCH
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm_test.go

    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, and branches which exceed the
    // range of BC are rewritten to reach.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlarge")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    }
    
    func parse(s string, flags Flags) (_ *Regexp, err error) {
    	defer func() {
    		switch r := recover(); r {
    		default:
    			panic(r)
    		case nil:
    			// ok
    		case ErrLarge: // too big
    			err = &Error{Code: ErrLarge, Expr: s}
    		case ErrNestingDepth:
    			err = &Error{Code: ErrNestingDepth, Expr: s}
    		}
    	}()
    
    	if flags&Literal != 0 {
    		// Trivial parser for literal string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/internal/zstd/zstd_test.go

    	if zstdBigErr != nil {
    		t.Fatal(zstdBigErr)
    	}
    	return zstdBigBytes
    }
    
    // Test decompressing a large file. We don't have a compressor,
    // so this test only runs on systems with zstd installed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping expensive test in short mode")
    	}
    
    	data := bigData(t)
    	compressed := zstdBigData(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    					t.Fatal(err)
    				}
    			}
    			var want string
    			if tt.relative {
    				relTarget := filepath.Base(target)
    				if tt.junction {
    					want = target // relative directory junction resolves to absolute path
    				} else {
    					want = relTarget
    				}
    				chdir(t, tmpdir)
    				link = filepath.Base(link)
    				target = relTarget
    			} else {
    				if tt.drive {
    					want = target
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. docs/fr/docs/contributing.md

    * La plupart des fonctionnalités sont couvertes par la documentation, assurées par la couverture des tests.
    
    Au cours du développement local, un script build le site et vérifie les changements éventuels, puis il est rechargé en direct :
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. docs/fr/docs/index.md

        return {"item_id": item_id, "q": q}
    
    
    @app.put("/items/{item_id}")
    def update_item(item_id: int, item: Item):
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    Le serveur se recharge normalement automatiquement (car vous avez pensé à `--reload` dans la commande `uvicorn` ci-dessus).
    
    ### Plus loin avec la documentation API interactive
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/image/gif/reader.go

    			m.Palette[ti] = color.RGBA{}
    		} else {
    			// The transparentIndex is out of range, which is an error
    			// according to the spec, but Firefox and Google Chrome
    			// seem OK with this, so we enlarge the palette with
    			// transparent colors. See golang.org/issue/15059.
    			p := make(color.Palette, ti+1)
    			copy(p, m.Palette)
    			for i := len(m.Palette); i < len(p); i++ {
    				p[i] = color.RGBA{}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top