Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for Co (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    ### Examples
    
    * To convert [microsoft/resnet-50](https://huggingface.co/microsoft/resnet-50)
    model to StableHLO with static input shape `4x3x224x224` for input argument with
    type `tensor<?x3x224x224xf32>`.
    
    ```bash
    tf-to-stablehlo-translate <saved-model-path> --input-arg-shapes=4,3,224,224
    ```
    
    * To convert
    [google-bert/bert-large-uncased](https://huggingface.co/google-bert/bert-large-uncased)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/image/jpeg/writer_test.go

    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				255,
    			}
    			imgRGBA.SetRGBA(x, y, col)
    			yo := imgYCbCr.YOffset(x, y)
    			co := imgYCbCr.COffset(x, y)
    			cy, ccr, ccb := color.RGBToYCbCr(col.R, col.G, col.B)
    			imgYCbCr.Y[yo] = cy
    			imgYCbCr.Cb[co] = ccr
    			imgYCbCr.Cr[co] = ccb
    		}
    	}
    
    	// Now check that both images are identical after an encode.
    	var bufRGBA, bufYCbCr bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. hack/tools/tools.go

    import (
    	// linting tools
    	_ "github.com/aojea/sloppy-netparser"
    	_ "github.com/client9/misspell/cmd/misspell"
    	_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
    	_ "github.com/jcchavezs/porto/cmd/porto"
    	_ "honnef.co/go/tools/cmd/staticcheck"
    	_ "sigs.k8s.io/logtools/logcheck"
    
    	// benchmarking tools
    	_ "github.com/cespare/prettybench"
    	_ "gotest.tools/gotestsum"
    
    	// mockgen
    	_ "go.uber.org/mock/mockgen"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockEntryFilterFactoryTest.groovy

            ['org:foo']             | ['org:foo:2.1']                   | ['com:bar:1.1']
            ['org:foo,']            | ['org:foo:2.1']                   | ['com:bar:1.1'] // Simply shows a trailing comma is ignored
            ['co*:ba*']             | ['com:bar:2.1']                   | ['org:foo:1.1']
            ['*:ba*']               | ['org:bar:2.1']                   | ['com:foo:1.1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/a.out.go

    	REG_F15
    	REG_F16
    	REG_F17
    	REG_F18
    	REG_F19
    	REG_F20
    	REG_F21
    	REG_F22
    	REG_F23
    	REG_F24
    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	// co-processor 0 control registers
    	REG_M0 // must be a multiple of 32
    	REG_M1
    	REG_M2
    	REG_M3
    	REG_M4
    	REG_M5
    	REG_M6
    	REG_M7
    	REG_M8
    	REG_M9
    	REG_M10
    	REG_M11
    	REG_M12
    	REG_M13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/apply.go

    	// Check which objects in the manifest have changed from those in the cache.
    	for _, obj := range allObjects {
    		oh := obj.Hash()
    		allObjectsMap[oh] = true
    		if co, ok := objectCache.Cache[oh]; ok && obj.Equal(co) {
    			// Object is in the cache and unchanged.
    			metrics.AddResource(obj.FullName(), obj.GroupVersionKind().GroupKind())
    			result.deployed++
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. docs/iam/opa.md

    # OPA Quickstart Guide [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
    
    OPA is a lightweight general-purpose policy engine that can be co-located with MinIO server, in this document we talk about how to use OPA HTTP API to authorize requests. It can be used with any type of credentials (STS based like OpenID or LDAP, regular IAM users or service accounts).
    
    OPA is enabled through MinIO's Access Management Plugin feature.
    
    ## Get started
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. docs/pl/docs/tutorial/index.md

    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    
    </div>
    
    **BARDZO zalecamy** pisanie bądź kopiowanie kodu, edycję, a następnie wykonywanie go lokalnie.
    
    Użycie w Twoim edytorze jest tym, co pokazuje prawdziwe korzyści z FastAPI, pozwala zobaczyć jak mało kodu musisz napisać, wszystkie funkcje, takie jak kontrola typów, <abbr title="auto-complete, autocompletion, IntelliSense">automatyczne uzupełnianie</abbr>, itd.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

        @Override
        HelloWorldApp getHelloWorldApp() {
            return new MixedLanguageHelloWorldApp(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
        def "can have all source files co-located in a common directory"() {
            given:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp {
                        source {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. docs/language_names.yml

    ba: башҡорт теле
    be: беларуская мова
    bg: български език
    bh: भोजपुरी
    bi: Bislama
    bm: bamanankan
    bn: বাংলা
    bo: བོད་ཡིག
    br: brezhoneg
    bs: bosanski jezik
    ca: Català
    ce: нохчийн мотт
    ch: Chamoru
    co: corsu
    cr: ᓀᐦᐃᔭᐍᐏᐣ
    cs: čeština
    cu: ѩзыкъ словѣньскъ
    cv: чӑваш чӗлхи
    cy: Cymraeg
    da: dansk
    de: Deutsch
    dv: Dhivehi
    dz: རྫོང་ཁ
    ee: Eʋegbe
    el: Ελληνικά
    en: English
    eo: Esperanto
    es: español
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top