Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for fracu (0.04 sec)

  1. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    für ausländische Studentinnen und Studenten
    am 08.06.2016
    einen Besuch im Museum Berggruen an.
    Durch die Ausstellung führt uns Frau Irena Katadzic.
    Bitte unbedingt den Studentenausweis mitbringen !!!
    Museum Berggruen Berlin: Picassos Bild der Frau 
    Das Museum Berggruen gehört zu den wichtigen Berliner Sammlungen Klassischer 
    Moderne. Mit seinen einzigartigen Werken zeigt es neben Alberto Giacometti und Henri 
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  2. src/math/modf_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // func archModf(f float64) (int float64, frac float64)
    TEXT ·archModf(SB),NOSPLIT,$0
    	FMOVD	f+0(FP), F0
    	FRIZ	F0, F1
    	FMOVD	F1, int+8(FP)
    	FSUB	F1, F0, F2
    	FCPSGN	F2, F0, F2
    	FMOVD	F2, frac+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 416 bytes
    - Viewed (0)
  3. src/runtime/mkfastlog2table.go

    // to disable FMA. This lets us generate the same output on all platforms.
    func log2(x float64) float64 {
    	frac, exp := math.Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    	if frac == 0.5 {
    		return float64(exp - 1)
    	}
    	return float64(nlog(frac)*(1/math.Ln2)) + float64(exp)
    }
    
    // nlog is a local copy of math.Log with explicit float64 conversions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 22:12:19 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/assets/templates/mem.html

                    document.getElementById("LastGC").innerText = d;
    
                    let frac = ms.GCCPUFraction;
                    if (frac < 0) {
                        frac = 0.0;
                    }
                    let percent = (frac * 100).toFixed(2);
                    document.getElementById("GCCPUFraction").innerText = percent + "%";
    
                    updateRefreshTime();
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/math/floor.go

    	if haveArchFloor {
    		return archFloor(x)
    	}
    	return floor(x)
    }
    
    func floor(x float64) float64 {
    	if x == 0 || IsNaN(x) || IsInf(x, 0) {
    		return x
    	}
    	if x < 0 {
    		d, fract := Modf(-x)
    		if fract != 0.0 {
    			d = d + 1
    		}
    		return -d
    	}
    	d, _ := Modf(x)
    	return d
    }
    
    // Ceil returns the least integer value greater than or equal to x.
    //
    // Special cases are:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. src/math/modf_asm.go

    // license that can be found in the LICENSE file.
    
    //go:build arm64 || ppc64 || ppc64le
    
    package math
    
    const haveArchModf = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 292 bytes
    - Viewed (0)
  7. src/math/modf_noasm.go

    // license that can be found in the LICENSE file.
    
    //go:build !arm64 && !ppc64 && !ppc64le
    
    package math
    
    const haveArchModf = false
    
    func archModf(f float64) (int float64, frac float64) {
    	panic("not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 326 bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/lang/pt.js

    não são válidos",andSpaces:" e espaços",badInt:"O número digitado não é válido",badSecurityNumber:"O número de seguro social digitado não é válido",badUKVatAnswer:"O número do VAT digitado não é válido para o Reino Unido",badStrength:"Senha muito fraca",badNumberOfSelectedOptionsStart:"Selecione pelo menos",badNumberOfSelectedOptionsEnd:" alternativa(s)",badAlphaNumeric:"Use somente caracteres alfanuméricos (letras a-z e números)",badAlphaNumericExtra:" e",wrongFileSize:"O arquivo selecionado é maior...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (2)
  9. src/cmd/compile/internal/test/float_test.go

    		if x := math.Float32bits(math.Float32frombits(negOne)); x != negOne {
    			t.Errorf("got %#x, want %#x", x, negOne)
    		}
    	}
    	{
    		const frac = uint32(0x3fc00000) // +1.5
    		if x := math.Float32bits(math.Float32frombits(frac)); x != frac {
    			t.Errorf("got %#x, want %#x", x, frac)
    		}
    	}
    	{
    		const negFrac = uint32(0xbfc00000) // -1.5
    		if x := math.Float32bits(math.Float32frombits(negFrac)); x != negFrac {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. src/runtime/mgclimit_test.go

    		t.Helper()
    		ticks += int64(d)
    		return ticks
    	}
    
    	// assistTime computes the CPU time for assists using frac of GOMAXPROCS
    	// over the wall-clock duration d.
    	assistTime := func(d time.Duration, frac float64) int64 {
    		t.Helper()
    		return int64(frac * float64(d) * procs)
    	}
    
    	l := NewGCCPULimiter(ticks, procs)
    
    	// Do the whole test twice to make sure state doesn't leak across.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top