Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 577 for encodeTo (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    		}
    	}
    }
    
    func (c *CompatibilityTestOptions) encode(t *testing.T, obj runtime.Object) (json, yaml, proto []byte) {
    	jsonBytes := bytes.NewBuffer(nil)
    	if err := c.JSON.Encode(obj, jsonBytes); err != nil {
    		t.Fatalf("error encoding json: %v", err)
    	}
    	yamlBytes := bytes.NewBuffer(nil)
    	if err := c.YAML.Encode(obj, yamlBytes); err != nil {
    		t.Fatalf("error encoding yaml: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    	tailCall          bool      // is a tail call
    	nilCheck          bool      // this op is a nil check on arg0
    	faultOnNilArg0    bool      // this op will fault if arg0 is nil (and aux encodes a small offset)
    	faultOnNilArg1    bool      // this op will fault if arg1 is nil (and aux encodes a small offset)
    	usesScratch       bool      // this op requires scratch memory space
    	hasSideEffects    bool      // for "reasons", not to be eliminated.  E.g., atomic store, #19182.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    `,
    		},
    	}
    
    	for i, item := range table {
    		gotEncoded, err := runtime.Encode(codec, item.obj)
    		if err != nil {
    			t.Errorf("unexpected error '%v' (%#v)", err, item.obj)
    		} else if e, a := item.encoded, string(gotEncoded); e != a {
    			t.Errorf("expected\n%#v\ngot\n%#v\n", e, a)
    		}
    
    		gotDecoded, err := runtime.Decode(codec, []byte(item.encoded))
    		if err != nil {
    			t.Errorf("unexpected error '%v' (%v)", err, item.encoded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

        String encryptionKeyAsBase64
    
        def setup() {
            keyStoreDir = new TestFile(testDirectory, 'keystores')
            encryptionKeyText = "01234567890123456789012345678901"
            encryptionKeyAsBase64 = Base64.encoder.encodeToString(encryptionKeyText.getBytes(StandardCharsets.UTF_8))
        }
    
        def "configuration cache can be loaded without errors from #source using #encryptionTransformation"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

                  .addQueryParameter("hostname", hostname).build(),
              )
              .post(query.toRequestBody(DNS_MESSAGE))
          } else {
            val encoded = query.base64Url().replace("=", "")
            val requestUrl = url.newBuilder().addQueryParameter("dns", encoded).build()
    
            url(requestUrl)
          }
        }.build()
    
      class Builder {
        internal var client: OkHttpClient? = null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/encoding/binary/binary_test.go

    	}
    }
    
    var encoders = []struct {
    	name string
    	fn   func(order ByteOrder, data any) ([]byte, error)
    }{
    	{
    		"Write",
    		func(order ByteOrder, data any) ([]byte, error) {
    			buf := new(bytes.Buffer)
    			err := Write(buf, order, data)
    			return buf.Bytes(), err
    		},
    	},
    	{
    		"Encode",
    		func(order ByteOrder, data any) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

      )
      fun keyPair(): KeyPair = keyPair
    
      /**
       * Returns the certificate encoded in [PEM format][rfc_7468].
       *
       * [rfc_7468]: https://tools.ietf.org/html/rfc7468
       */
      fun certificatePem(): String = certificate.certificatePem()
    
      /**
       * Returns the private key encoded in [PKCS #8][rfc_5208] [PEM format][rfc_7468].
       *
       * [rfc_5208]: https://tools.ietf.org/html/rfc5208
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. cmd/signature-v4.go

    	)
    
    	// Add missing query parameters if any provided in the request URL
    	for k, v := range req.Form {
    		if !defaultSigParams.Contains(k) {
    			query[k] = v
    		}
    	}
    
    	// Get the encoded query.
    	encodedQuery := query.Encode()
    
    	// Verify if date query is same.
    	if req.Form.Get(xhttp.AmzDate) != query.Get(xhttp.AmzDate) {
    		return ErrSignatureDoesNotMatch
    	}
    	// Verify if expires query is same.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/BaseSerializerFactory.java

            }
    
            @Override
            public void write(Encoder encoder, Map<String, String> value) throws Exception {
                encoder.writeSmallInt(value.size());
                for (Map.Entry<String, String> entry : value.entrySet()) {
                    encoder.writeString(entry.getKey());
                    encoder.writeString(entry.getValue());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

                writeConfiguration(encoder, configuration);
                writeFiles(encoder, configuration.getArtifacts());
                writeDependencies(encoder, configuration, deduplicationDependencyCache);
            }
        }
    
        protected void writeConfiguration(Encoder encoder, ConfigurationMetadata configuration) throws IOException {
            assert configuration != null;
            encoder.writeString(configuration.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top