Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for c302 (0.04 sec)

  1. src/net/http/client_test.go

    		`GET /?code=302 ""`,
    		`GET / ""`,
    		`POST /?code=302&next=302 "c302"`,
    		`GET /?code=302 ""`,
    		`GET / ""`,
    		`POST /?code=303&next=301 "c303wc301"`,
    		`GET /?code=301 ""`,
    		`GET / ""`,
    		`POST /?code=304 "c304"`,
    		`POST /?code=305 "c305"`,
    		`POST /?code=307&next=303,308,302 "c307"`,
    		`POST /?code=303&next=308,302 "c307"`,
    		`GET /?code=308&next=302 ""`,
    		`GET /?code=302 "c307"`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7746.go

    	c21  = c20 * c20
    	c22  = c21 * c21
    	c23  = c22 * c22
    	c24  = c23 * c23
    	c25  = c24 * c24
    	c26  = c25 * c25
    	c27  = c26 * c26
    	c28  = c27 * c27
    	c29  = c28 * c28
    	c30  = c29 * c29
    	c31  = c30 * c30
    	c32  = c31 * c31
    	c33  = c32 * c32
    	c34  = c33 * c33
    	c35  = c34 * c34
    	c36  = c35 * c35
    	c37  = c36 * c36
    	c38  = c37 * c37
    	c39  = c38 * c38
    	c40  = c39 * c39
    	c41  = c40 * c40
    	c42  = c41 * c41
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  3. helm-releases/minio-3.0.2.tgz

    minio-3.0.2.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-09-03T03-56-13Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 3.0.2 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Sep 03 08:11:32 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/at_sysnum_netbsd.go

    const fstatatTrap uintptr = syscall.SYS_FSTATAT
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    	AT_SYMLINK_NOFOLLOW = 0x200
    
    	UTIME_OMIT = (1 << 30) - 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 14:13:33 UTC 2023
    - 492 bytes
    - Viewed (0)
  5. cmd/bucket-replication_test.go

    		name: "existing object replication enabled, versioning enabled; no reset in progress",
    		info: ObjectInfo{
    			Size:              100,
    			ReplicationStatus: replication.Completed,
    			VersionID:         "a3348c34-c352-4498-82f0-1098e8b34df9",
    		},
    		rcfg:         replicationConfig{Config: &configs[0]},
    		expectedSync: false,
    	},
    }
    
    func TestReplicationResync(t *testing.T) {
    	ctx := context.Background()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. src/math/jn.go

    	if x < 0 {
    		x = -x
    		if n&1 == 1 {
    			sign = true // odd n and negative x
    		}
    	}
    	var b float64
    	if float64(n) <= x {
    		// Safe to use J(n+1,x)=2n/x *J(n,x)-J(n-1,x)
    		if x >= Two302 { // x > 2**302
    
    			// (x >> n**2)
    			//          Jn(x) = cos(x-(2n+1)*pi/4)*sqrt(2/x*pi)
    			//          Yn(x) = sin(x-(2n+1)*pi/4)*sqrt(2/x*pi)
    			//          Let s=sin(x), c=cos(x),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug114.go

    // license that can be found in the LICENSE file.
    
    package main
    
    const B32 = 1<<32 - 1
    const C32 = (-1) & ((1 << 32) - 1)
    const D32 = ^0
    
    func main() {
    	if B32 != 0xFFFFFFFF {
    		println("1<<32 - 1 is", B32, "should be", 0xFFFFFFFF)
    		panic("fail")
    	}
    	if C32 != 0xFFFFFFFF {
    		println("(-1) & ((1<<32) - 1) is", C32, "should be", 0xFFFFFFFF)
    		panic("fail")
    	}
    	if D32 != -1 {
    		println("^0 is", D32, "should be", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:19:59 UTC 2012
    - 556 bytes
    - Viewed (0)
  8. test/chan/nonblock.go

    		default:
    		}
    
    		go i32receiver(c32, sync)
    		try := 0
    	Send32:
    		for {
    			select {
    			case c32 <- 123:
    				break Send32
    			default:
    				try++
    				if try > maxTries {
    					println("i32receiver buffer=", buffer)
    					panic("fail")
    				}
    				sleep()
    			}
    		}
    		<-sync
    
    		go i32sender(c32, sync)
    		if buffer > 0 {
    			<-sync
    		}
    		try = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  9. src/image/png/testdata/pngsuite/basn0g16.sng

    0600 0f00 1800 2100 2a00 3300 3c00 4500 4e00 5700 6000 6900 7200 7b00 8400 8d00 9600 9f00 a800 b100 ba00 c300 cc00 d500 de00 e700 f000 f900 f9ff deff c3ff a8ff 
    0800 1100 1a00 2300 2c00 3500 3e00 4700 5000 5900 6200 6b00 7400 7d00 8600 8f00 9800 a100 aa00 b300 bc00 c500 ce00 d700 e000 e900 f200 fb00 f3ff d8ff bdff a2ff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java

     * under the License.
     */
    package org.apache.maven.rtinfo;
    
    /**
     * Provides information about the current Maven runtime.
     *
     * @since 3.0.2
     */
    public interface RuntimeInformation {
    
        /**
         * Retrieves the current Maven version, for example "3.0.2".
         *
         * @return The current Maven version or an empty string if unknown, never {@code null}.
         */
        String getMavenVersion();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top