Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 510 for v0Version (0.94 sec)

  1. src/crypto/tls/conn.go

    func (hc *halfConn) prepareCipherSpec(version uint16, cipher any, mac hash.Hash) {
    	hc.version = version
    	hc.nextCipher = cipher
    	hc.nextMac = mac
    }
    
    // changeCipherSpec changes the encryption and MAC states
    // to the ones previously passed to prepareCipherSpec.
    func (hc *halfConn) changeCipherSpec() error {
    	if hc.nextCipher == nil || hc.version == VersionTLS13 {
    		return alertInternalError
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    			}
    			if versioned || suspended {
    				// Bucket is versioned and no version was explicitly
    				// mentioned for deletes, create a delete marker instead.
    				vr.ModTime = UTCNow()
    				vr.Deleted = true
    				// Versioning suspended means that we add a `null` version
    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. tests/test_generate_unique_id_function.py

        app.include_router(router)
        client = TestClient(app)
        response = client.get("/openapi.json")
        data = response.json()
        assert data == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/": {
                    "post": {
                        "summary": "Post Root",
                        "operationId": "foo_post_root",
                        "requestBody": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[0].get()),
                  Eq(BuiltinOperator_ADD));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(2));
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[1].get()),
                  Eq(BuiltinOperator_RESHAPE));
      ASSERT_THAT(model_.operator_codes[1]->version, Eq(1));
    }
    
    TEST_F(QuantizeMultiInputAddWithReshapeTest, VerifyAddQuantization) {
      auto status = QuantizeModelAllOperators(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    			s.AddUint32(ctxt.Arch, uint32(dynstr.Addstring(x.vers))) // version string offset
    			if x.next != nil {
    				s.AddUint32(ctxt.Arch, 16) // offset from this aux to next
    			} else {
    				s.AddUint32(ctxt.Arch, 0)
    			}
    		}
    	}
    
    	// version references
    	gnuVersion := ldr.CreateSymForUpdate(".gnu.version", 0)
    	s = gnuVersion
    
    	for i := 0; i < nsym; i++ {
    		if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			`,
    		},
    		{
    			desc: "version is not v2",
    			statusResponse: &kmsservice.StatusResponse{
    				Version: "v1beta1",
    			},
    			expectedErr: "got unexpected healthz status: , expected KMSv2 API version v2, got v1beta1, got invalid KMSv2 KeyID ",
    			wantMetrics: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			return err
    		}
    
    		return updateMyCRDV1Beta1Schema{
    			newSchema: &parsed,
    		}.Do(ctx)
    	}
    
    	return fmt.Errorf("could not find version %v in CRD %v", myCRDV1Beta1.Version, myCRD.Name)
    }
    
    func (p patchMyCRDV1Beta1Schema) Description() string {
    	return p.description
    }
    
    type ratchetingTestCase struct {
    	Name       string
    	Disabled   bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    	Version   int       `json:"version"`
    	Status    string    `json:"status"`
    	Members   []string  `json:"members"`
    	UpdatedAt time.Time `json:"updatedAt,omitempty"`
    }
    
    func newGroupInfo(members []string) GroupInfo {
    	return GroupInfo{Version: 1, Status: statusEnabled, Members: members, UpdatedAt: UTCNow()}
    }
    
    // MappedPolicy represents a policy name mapped to a user or group
    type MappedPolicy struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			desc:             "error getting version info",
    			node:             &v1.Node{},
    			versionInfoError: fmt.Errorf("foo"),
    			expectNode:       &v1.Node{},
    			expectError:      fmt.Errorf("error getting version info: foo"),
    			kubeProxyVersion: true,
    		},
    		{
    			desc:                "error getting runtime version results in Unknown runtime",
    			node:                &v1.Node{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

            service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
          annotations: {
            istio.io/rev: {{ .Revision | default "default" | quote }},
            {{- if ge (len $containers) 1 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top