Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for Co (0.05 sec)

  1. test/codegen/mathbits.go

    //    bits.Add*    //
    // --------------- //
    
    func Add(x, y, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// ppc64x: "ADDC", "ADDE", "ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// riscv64: "ADD","SLTU"
    	return bits.Add(x, y, ci)
    }
    
    func AddC(x, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CertificatePinnerKotlinTest.kt

        val pin =
          Pin(
            "**.example.co.uk",
            "sha256/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
          )
        assertEquals("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=".decodeBase64(), pin.hash)
        assertEquals("sha256", pin.hashAlgorithm)
        assertEquals("**.example.co.uk", pin.pattern)
        assertTrue(pin.matchesHostname("www.example.co.uk"))
        assertTrue(pin.matchesHostname("gopher.example.co.uk"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/internal/pgo/deserialize.go

    			return nil, fmt.Errorf("preprocessed profile entry got %v want 2 fields", split)
    		}
    
    		co, err := strconv.Atoi(split[0])
    		if err != nil {
    			return nil, fmt.Errorf("preprocessed profile error processing call line: %w", err)
    		}
    
    		edge := NamedCallEdge{
    			CallerName:     callerName,
    			CalleeName:     calleeName,
    			CallSiteOffset: co,
    		}
    
    		weight, err := strconv.ParseInt(split[1], 10, 64)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    frameworkのパフォーマンス比較 (Django, Flask, responder, FastAPI, japronto) - author: ライトコードメディア編集部 author_link: https://rightcode.co.jp/author/jun link: https://rightcode.co.jp/blog/information-technology/fastapi-tutorial-todo-apps-admin-page-improvement title: '【第4回】FastAPIチュートリアル: toDoアプリを作ってみよう【管理者ページ改良編】' - author: ライトコードメディア編集部 author_link: https://rightcode.co.jp/author/jun link: https://rightcode.co.jp/blog/information-technology/fastapi-tutorial-todo-apps-authentication-user-registration title: '【第3回】FastAPIチュートリアル:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

                actualIds << it
            }
    
            actualIds == expectedIds
        }
    
        CapabilitiesConflictHandler.Candidate candidate(CapabilityInternal cap, ComponentState co) {
            Mock(CapabilitiesConflictHandler.Candidate) {
                getNode() >> node(co)
                getCapability() >> cap
                getImplicitCapabilityProviders() >> []
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. internal/config/cache/cache.go

    	if err != nil {
    		return nil, err
    	}
    	defer xhttp.DrainBody(resp.Body)
    
    	switch resp.StatusCode {
    	case http.StatusNotFound:
    		return nil, ErrKeyMissing
    	case http.StatusOK:
    		co := &ObjectInfo{}
    		return co, co.DecodeMsg(msgp.NewReader(resp.Body))
    	default:
    		return nil, ErrInvalidArgument
    	}
    }
    
    // Set sets the cache object info
    func (c Config) Set(ci *ObjectInfo) {
    	configLock.RLock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. src/net/http/cookiejar/jar.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    //
    // Implementations of PublicSuffixList must be safe for concurrent use by
    // multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

        assertThat("https://adwords.google.co.uk".toHttpUrl().topPrivateDomain())
          .isEqualTo("google.co.uk")
        assertThat("https://栃.栃木.jp".toHttpUrl().topPrivateDomain())
          .isEqualTo("xn--ewv.xn--4pvxs.jp")
        assertThat("https://xn--ewv.xn--4pvxs.jp".toHttpUrl().topPrivateDomain())
          .isEqualTo("xn--ewv.xn--4pvxs.jp")
        assertThat("https://co.uk".toHttpUrl().topPrivateDomain()).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top