Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for IM (0.08 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/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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. docs/de/docs/advanced/generate-clients.md

    Wir wissen bereits, dass diese Methode mit den **Items** zusammenhängt, da sich dieses Wort in `ItemsService` befindet (vom Tag übernommen), aber wir haben auch immer noch den Tagnamen im Methodennamen vorangestellt. 😕
    
    Wir werden das wahrscheinlich weiterhin für OpenAPI im Allgemeinen beibehalten wollen, da dadurch sichergestellt wird, dass die Operation-IDs **eindeutig** sind.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/const.go

    			}
    			re := roundFloat32(constant.Real(x))
    			im := roundFloat32(constant.Imag(x))
    			if re != nil && im != nil {
    				*rounded = constant.BinaryOp(re, token.ADD, constant.MakeImag(im))
    				return true
    			}
    		case Complex128:
    			if rounded == nil {
    				return fitsFloat64(constant.Real(x)) && fitsFloat64(constant.Imag(x))
    			}
    			re := roundFloat64(constant.Real(x))
    			im := roundFloat64(constant.Imag(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_gc_manager_test.go

    	}, fakeRuntime
    }
    
    // Accessors used for thread-safe testing.
    func (im *realImageGCManager) imageRecordsLen() int {
    	im.imageRecordsLock.Lock()
    	defer im.imageRecordsLock.Unlock()
    	return len(im.imageRecords)
    }
    func (im *realImageGCManager) getImageRecord(name string) (*imageRecord, bool) {
    	im.imageRecordsLock.Lock()
    	defer im.imageRecordsLock.Unlock()
    	v, ok := im.imageRecords[name]
    	vCopy := *v
    	return &vCopy, ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top