Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 700 for clip (0.21 sec)

  1. src/image/draw/draw.go

    	clip(dst, &r, src, &sp, nil, nil)
    	if r.Empty() {
    		return
    	}
    	drawPaletted(dst, r, src, sp, true)
    }
    
    // clip clips r against each image's bounds (after translating into the
    // destination image's coordinate space) and shifts the points sp and mp by
    // the same amount as the change in r.Min.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/slices/slices_test.go

    		t.Errorf("len(%v) = %d, want 3", s1, len(s1))
    	}
    	if cap(s1) < 6 {
    		t.Errorf("cap(%v[:3]) = %d, want >= 6", orig, cap(s1))
    	}
    	s2 := Clip(s1)
    	if !Equal(s1, s2) {
    		t.Errorf("Clip(%v) = %v, want %v", s1, s2, s1)
    	}
    	if cap(s2) != 3 {
    		t.Errorf("cap(Clip(%v)) = %d, want 3", orig, cap(s2))
    	}
    }
    
    func TestReverse(t *testing.T) {
    	even := []int{3, 1, 4, 1, 5, 9} // len = 6
    	Reverse(even)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        # is unusually small.
        if abs(zero_point) > 9e9:
          zero_point = 9e9
        if abs(scale) < 1e-9:
          scale = 1e-9
    
        zero_point = round(zero_point)
        quantized_hist_mids = np.clip(
            np.round(self._hist_mids / scale) + zero_point, minbound, maxbound
        )
        dequantized_hist_mids = scale * (quantized_hist_mids - zero_point)
        return dequantized_hist_mids
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    			telemetry.Inc("go/subcommand:" + strings.ReplaceAll(cfg.CmdName, " ", "-") + "-" + strings.Join(args[used:], "-"))
    			help.Help(os.Stdout, append(slices.Clip(args[:used]), args[used+1:]...))
    			base.Exit()
    		}
    		helpArg := ""
    		if used > 0 {
    			helpArg += " " + strings.Join(args[:used], " ")
    		}
    		cmdName := cfg.CmdName
    		if cmdName == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/templates/productpage.html

                  </svg>
                  {% endfor %}
                  {% for n in range(5 - review.rating.stars) %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    		ptest.EmbedFiles = str.StringList(p.EmbedFiles, p.TestEmbedFiles)
    		ptest.Internal.OrigImportPath = p.Internal.OrigImportPath
    		ptest.Internal.PGOProfile = p.Internal.PGOProfile
    		ptest.Internal.Build.Directives = append(slices.Clip(p.Internal.Build.Directives), p.Internal.Build.TestDirectives...)
    	} else {
    		ptest = p
    	}
    
    	// External test package.
    	if len(p.XTestGoFiles) > 0 {
    		pxtest = &Package{
    			PackagePublic: PackagePublic{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. src/image/jpeg/writer.go

    	if b.Dx() >= 1<<16 || b.Dy() >= 1<<16 {
    		return errors.New("jpeg: image is too large to encode")
    	}
    	var e encoder
    	if ww, ok := w.(writer); ok {
    		e.w = ww
    	} else {
    		e.w = bufio.NewWriter(w)
    	}
    	// Clip quality to [1, 100].
    	quality := DefaultQuality
    	if o != nil {
    		quality = o.Quality
    		if quality < 1 {
    			quality = 1
    		} else if quality > 100 {
    			quality = 100
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate.go

    	if len(words) == 1 {
    		g.errorf("no command specified for -command")
    	}
    	command := words[1]
    	if g.commands[command] != nil {
    		g.errorf("command %q multiply defined", command)
    	}
    	g.commands[command] = slices.Clip(words[2:])
    }
    
    // exec runs the command specified by the argument. The first word is
    // the command name itself.
    func (g *Generator) exec(words []string) {
    	path := words[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    hment":"fixed"},".bg-local":{"background-attachment":"local"},".bg-scroll":{"background-attachment":"scroll"}})},backgroundClip:({addUtilities:i})=>{i({".bg-clip-border":{"background-clip":"border-box"},".bg-clip-padding":{"background-clip":"padding-box"},".bg-clip-content":{"background-clip":"content-box"},".bg-clip-text":{"background-clip":"text"}})},backgroundPosition:P("backgroundPosition",[["bg",["background-position"]]],{type:["lookup",["position",{preferOnConflict:!0}]]}),backgroundRepeat...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. src/log/slog/handler_test.go

    			wantJSON: `{"time":"2000-01-02T03:04:05Z","level":"INFO","msg":"message","a":"one","b":2}`,
    		},
    		{
    			name:     "empty key",
    			attrs:    append(slices.Clip(attrs), Any("", "v")),
    			wantText: `time=2000-01-02T03:04:05.000Z level=INFO msg=message a=one b=2 ""=v`,
    			wantJSON: `{"time":"2000-01-02T03:04:05Z","level":"INFO","msg":"message","a":"one","b":2,"":"v"}`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top