Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for retlarge (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/bufio/bufio_test.go

    	if b1 != b {
    		t.Error("NewReaderSize did not detect underlying Reader")
    	}
    	// Does it wrap if existing buffer is too small?
    	b2 := NewReaderSize(b, 2*BufSize)
    	if b2 == b {
    		t.Error("NewReaderSize did not enlarge buffer")
    	}
    }
    
    func TestNewWriterSizeIdempotent(t *testing.T) {
    	const BufSize = 1000
    	b := NewWriterSize(new(bytes.Buffer), BufSize)
    	// Does it recognize itself?
    	b1 := NewWriterSize(b, BufSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int result =
            (configuredExpectedSize == Builder.UNSET_EXPECTED_SIZE)
                ? DEFAULT_CAPACITY
                : configuredExpectedSize;
    
        // Enlarge to contain initial contents
        if (initialContents instanceof Collection) {
          int initialSize = ((Collection<?>) initialContents).size();
          result = Math.max(result, initialSize);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  7. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int result =
            (configuredExpectedSize == Builder.UNSET_EXPECTED_SIZE)
                ? DEFAULT_CAPACITY
                : configuredExpectedSize;
    
        // Enlarge to contain initial contents
        if (initialContents instanceof Collection) {
          int initialSize = ((Collection<?>) initialContents).size();
          result = Math.max(result, initialSize);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    			ldr.SetRelocVariant(s, rIdx, sym.RV_POWER_HA|sym.RV_CHECK_OVERFLOW)
    		}
    		su.SetRelocType(rIdx, objabi.R_POWER_TOC)
    		if targType == sym.SDYNIMPORT {
    			// This is an external symbol, make space in the GOT and retarget the reloc.
    			ld.AddGotSym(target, ldr, syms, targ, uint32(elf.R_PPC64_GLOB_DAT))
    			su.SetRelocSym(rIdx, syms.GOT)
    			su.SetRelocAdd(rIdx, r.Add()+int64(ldr.SymGot(targ)))
    		} else if targType == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                                             sum_element_type);
        else
          result_type = UnrankedTensorType::get(sum_element_type);
    
        // Convert if we need enlarge the element type's bitwidth.
        if (input_element_type != sum_element_type)
          input_value = rewriter.create<ConvertOp>(op.getLoc(), input_value,
                                                   sum_element_type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg reflect, method (Value) Equal(Value) bool #46746
    pkg reflect, method (Value) Grow(int) #48000
    pkg reflect, method (Value) SetZero() #52376
    pkg regexp/syntax, const ErrLarge ErrorCode #56041
    pkg regexp/syntax, const ErrLarge = "expression too large" #56041
    pkg runtime/cgo (darwin-amd64-cgo), type Incomplete struct #46731
    pkg runtime/cgo (darwin-arm64-cgo), type Incomplete struct #46731
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top