Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 211 for IM (0.02 sec)

  1. src/math/cmplx/sin.go

    func Sinh(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case re == 0 && (math.IsInf(im, 0) || math.IsNaN(im)):
    		return complex(re, math.NaN())
    	case math.IsInf(re, 0):
    		switch {
    		case im == 0:
    			return complex(re, im)
    		case math.IsInf(im, 0) || math.IsNaN(im):
    			return complex(re, math.NaN())
    		}
    	case im == 0 && math.IsNaN(re):
    		return complex(math.NaN(), im)
    	}
    	s, c := math.Sincos(imag(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/math/cmplx/asin.go

    func Asinh(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case im == 0 && math.Abs(re) <= 1:
    		return complex(math.Asinh(re), im)
    	case re == 0 && math.Abs(im) <= 1:
    		return complex(re, math.Asin(im))
    	case math.IsInf(re, 0):
    		switch {
    		case math.IsInf(im, 0):
    			return complex(re, math.Copysign(math.Pi/4, im))
    		case math.IsNaN(im):
    			return x
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/internal/profile/filter.go

    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    		fm = fm || focused
    		im = im || ignored
    		if focused && !ignored {
    			samples = append(samples, s)
    		}
    	}
    	p.Sample = samples
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/image/draw/example_test.go

    	pi := image.NewPaletted(im.Bounds(), []color.Color{
    		color.Gray{Y: 255},
    		color.Gray{Y: 160},
    		color.Gray{Y: 70},
    		color.Gray{Y: 35},
    		color.Gray{Y: 0},
    	})
    
    	draw.FloydSteinberg.Draw(pi, im.Bounds(), im, image.Point{})
    	shade := []string{" ", "░", "▒", "▓", "█"}
    	for i, p := range pi.Pix {
    		fmt.Print(shade[p])
    		if (i+1)%width == 0 {
    			fmt.Print("\n")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager.go

    	for image := range im.imageRecords {
    		if !currentImages.Has(image) {
    			klog.V(5).InfoS("Image ID is no longer present; removing from imageRecords", "imageID", image)
    			delete(im.imageRecords, image)
    		}
    	}
    
    	return imagesInUse, nil
    }
    
    func (im *realImageGCManager) GarbageCollect(ctx context.Context, beganGC time.Time) error {
    	ctx, otelSpan := im.tracer.Start(ctx, "Images/GarbageCollect")
    	defer otelSpan.End()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/strconv/ctoa.go

    	}
    	bitSize >>= 1 // complex64 uses float32 internally
    
    	// Check if imaginary part has a sign. If not, add one.
    	im := FormatFloat(imag(c), fmt, prec, bitSize)
    	if im[0] != '+' && im[0] != '-' {
    		im = "+" + im
    	}
    
    	return "(" + FormatFloat(real(c), fmt, prec, bitSize) + im + "i)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    ab.
    Das Museumsdorf Baruther Glashütte ist ein Technisches Denkmal im Süden des Landkreises Teltow-Fläming in
    Brandenburg. Das Museum setzt sich mit der Sozial- und Technikgeschichte des alten Glasmacher-Ortes auseinander.
    Eine Ausstellung über den Erfinder der Thermoskanne Reinhold Burger ist zu besichtigen. Im Dorf selbst haben sich
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  8. maven-model/src/test/java/org/apache/maven/model/IssueManagementTest.java

            assertNotNull(new IssueManagement().toString());
        }
    
        public void testToStringNotNonsense() {
            IssueManagement im = new IssueManagement();
            im.setSystem("Velociraptor");
            im.setUrl("https://velo.localdomain");
    
            String s = im.toString();
    
            assert "IssueManagement {system=Velociraptor, url=https://velo.localdomain}".equals(s) : s;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. test/fixedbugs/bug216.go

    // Used to be rejected
    // https://golang.org/issue/188
    
    package main
    
    func complexSqrt(i int) (int, int)	{ return 0, 1 }
    
    var re, im = complexSqrt(-1)
    
    func main() {
    	if re != 0 || im != 1 {
    		println("BUG: bug216: want 0,-1 have ", re, im)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 418 bytes
    - Viewed (0)
  10. operator/pkg/compare/compare.go

    		if len(split) != 2 {
    			continue
    		}
    		rm[split[0]] = split[1]
    	}
    	return rm
    }
    
    func objectIgnorePaths(objectName string, im map[string]string) (ignorePaths []string) {
    	if im == nil {
    		im = make(map[string]string)
    	}
    	for obj, path := range im {
    		if path == "" {
    			continue
    		}
    		re, err := buildResourceRegexp(strings.TrimSpace(obj))
    		if err != nil {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top