Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for uncompressed (0.15 sec)

  1. src/crypto/internal/nistec/p224.go

    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    func (p *P224Point) Set(q *P224Point) *P224Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p521.go

    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    func (p *P521Point) Set(q *P521Point) *P521Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p384.go

    	p.z.One()
    	return p
    }
    
    // Set sets p = q and returns p.
    func (p *P384Point) Set(q *P384Point) *P384Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  4. pkg/wasm/imagefetcher.go

    	}
    
    	// Somehow go-containerregistry recognizes custom artifact layers as compressed ones,
    	// while the Solo's Wasm layer is actually uncompressed and therefore
    	// the content itself is a raw Wasm binary. So using "Uncompressed()" here result in errors
    	// since internally it tries to umcompress it as gzipped blob.
    	r, err := layer.Compressed()
    	if err != nil {
    		return nil, fmt.Errorf("could not get layer content: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        server.enqueue(
          MockResponse.Builder()
            .setHeader("Content-Type", PLAIN)
            .body(Buffer().writeUtf8("Uncompressed"))
            .build(),
        )
        val response =
          client.newCall(
            request()
              .addHeader("Content-Encoding", "gzip")
              .post("Uncompressed".toRequestBody().gzip())
              .build(),
          ).execute()
        val responseBody = response.body
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/generate.go

    }
    
    // Set sets p = q and returns p.
    func (p *{{.P}}Point) Set(q *{{.P}}Point) *{{.P}}Point {
    	p.x.Set(q.x)
    	p.y.Set(q.y)
    	p.z.Set(q.z)
    	return p
    }
    
    // SetBytes sets p to the compressed, uncompressed, or infinity value encoded in
    // b, as specified in SEC 1, Version 2.0, Section 2.3.4. If the point is not on
    // the curve, it returns nil and an error, and the receiver is unchanged.
    // Otherwise, it returns p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pkg/kubelet/logs/container_log_manager.go

    	}
    	return nil
    }
    
    // UncompressLog compresses a compressed log and return a readcloser for the
    // stream of the uncompressed content.
    // TODO(#59902): Leverage this function to support log rotation in `kubectl logs`.
    func UncompressLog(log string) (_ io.ReadCloser, retErr error) {
    	if !strings.HasSuffix(log, compressSuffix) {
    		return nil, fmt.Errorf("log is not compressed")
    	}
    	f, err := os.Open(log)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. cmd/object-api-utils.go

    		}
    		conn.Close()
    		break
    	}
    
    	return host
    }
    
    // IsCompressed returns true if the object is marked as compressed.
    func (o *ObjectInfo) IsCompressed() bool {
    	_, ok := o.UserDefined[ReservedMetadataPrefix+"compression"]
    	return ok
    }
    
    // IsCompressedOK returns whether the object is compressed and can be decompressed.
    func (o *ObjectInfo) IsCompressedOK() (bool, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            then:
            installedJdk.exists()
            new File(installedJdk, "jdk-with-symlinks.2/bin/file").exists()
    
            //TODO: completely wrong; the uncompressed archive should look like this:
            // .
            // ├── bin -> zulu-11.jdk/Contents/Home/bin
            // ├── file
            // └── zulu-11.jdk
            //     └── Contents
            //         └── Home
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    		if compression == compressionNone {
    			foundCompression = true
    			break
    		}
    	}
    
    	if !foundCompression {
    		c.sendAlert(alertHandshakeFailure)
    		return errors.New("tls: client does not support uncompressed connections")
    	}
    
    	hs.hello.random = make([]byte, 32)
    	serverRandom := hs.hello.random
    	// Downgrade protection canaries. See RFC 8446, Section 4.1.3.
    	maxVers := c.config.maxSupportedVersion(roleServer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top