Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,637 for cheese (0.14 sec)

  1. tensorflow/compiler/jit/device_util.h

    // CPU and also operations placed on the GPU will be compiled into a GPU
    // executable.
    //
    // Returns a non-OK Status if no unambiguous choice of device exists.
    //
    // We choose the device using the following rules:
    //
    //  - It is an error for `device_names` to contain more than one device of the
    //    same type.
    //  - GPU is preferred over CPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func_test.go

    //          If("deadval", "deadblock", "exit")))
    //
    // and the Blocks or Values used in the Func can be accessed
    // like this:
    //   fun.blocks["entry"] or fun.values["deadval"]
    
    package ssa
    
    // TODO(matloob): Choose better names for Fun, Bloc, Goto, etc.
    // TODO(matloob): Write a parser for the Func disassembly. Maybe
    // the parser can be used instead of Fun.
    
    import (
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue7867.go

    func Test%d(t %s) {
    	_ = t
    	_ = t
    }
    `
    
    func main() {
    	fmt.Println("package main")
    	types := []string{
    		// These types always passed
    		"bool", "int", "rune",
    		"*int", "uintptr",
    		"float32", "float64",
    		"chan struct{}",
    		"map[string]struct{}",
    		"func()", "func(string)error",
    
    		// These types caused compilation failures
    		"complex64", "complex128",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 825 bytes
    - Viewed (0)
  4. src/compress/flate/writer_test.go

    	}
    	// Use a very small prime sized buffer.
    	cbuf := make([]byte, 787)
    	_, err = io.CopyBuffer(w, struct{ io.Reader }{br}, cbuf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	w.Close()
    
    	// We choose a different buffer size,
    	// bigger than a maximum block, and also a prime.
    	var b2 bytes.Buffer
    	cbuf = make([]byte, 81761)
    	br2 := bytes.NewBuffer(t1)
    	w2, err := NewWriter(&b2, i)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/README.md

    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  6. docs/ru/docs/help-fastapi.md

    Тогда Вы можете попробовать решить эту проблему.
    
    ## Запросить помощь с решением проблемы
    
    Вы можете <a href="https://github.com/tiangolo/fastapi/issues/new/choose" class="external-link" target="_blank">создать новый запрос с просьбой о помощи</a> в репозитории на GitHub, например:
    
    * Задать **вопрос** или попросить помощи в решении **проблемы**.
    * Предложить новое **улучшение**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. hack/lib/version.sh

        return
      fi
    
      # If the kubernetes source was exported through git archive, then
      # we likely don't have a git tree, but these magic values may be filled in.
      # shellcheck disable=SC2016,SC2050
      # Disabled as we're not expanding these at runtime, but rather expecting
      # that another tool may have expanded these and rewritten the source (!)
      if [[ '$Format:%%$' == "%" ]]; then
        KUBE_GIT_COMMIT='$Format:%H$'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testdata/issue49482.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type (
            // these need a comma to disambiguate
            _[P *T,] struct{}
            _[P *T, _ any] struct{}
            _[P (*T),] struct{}
            _[P (*T), _ any] struct{}
            _[P (T),] struct{}
            _[P (T), _ any] struct{}
    
            // these parse as name followed by type
            _[P *struct{}] struct{}
            _[P (*struct{})] struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 965 bytes
    - Viewed (0)
  9. src/runtime/mfinal_test.go

    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    		// call32 as the result has (exactly) 32 bytes. When the argument actually spills,
    		// it clobbers the caller's frame (likely the return PC).
    		{func(x *int) any { return x }, func(v any) [4]int64 {
    			print() // force spill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top