Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for 0644 (0.03 sec)

  1. src/archive/tar/writer_test.go

    				Size:     15,
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      100,
    				Uname:    "vbatts",
    				Gname:    "users",
    				ModTime:  time.Unix(1425484303, 0),
    			}, nil},
    			testWrite{"Slartibartfast\n", 15, nil},
    
    			testHeader{Header{
    				Typeflag: TypeLink,
    				Name:     "hard.txt",
    				Linkname: "file.txt",
    				Mode:     0644,
    				Uid:      1000,
    				Gid:      100,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/archive/zip/writer_test.go

    	buf := new(bytes.Buffer)
    	w := NewWriter(buf)
    	tests := []WriteTest{
    		{Name: "emptyfolder", Mode: 0o755 | os.ModeDir},
    		{Name: "file.go", Data: []byte("hello"), Mode: 0644},
    		{Name: "subfolder/another.go", Data: []byte("world"), Mode: 0644},
    		// Notably missing here is the "subfolder" directory. This makes sure even
    		// if we don't have a subfolder directory listed.
    	}
    	err := w.AddFS(writeTestsToFS(tests))
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/archive/tar/tar_test.go

    	}{{
    		"USTAR",
    		[]file{{
    			&Header{Name: "bar", Mode: 0640, Size: int64(3)},
    			[]byte("foo"),
    		}, {
    			&Header{Name: "world", Mode: 0640, Size: int64(5)},
    			[]byte("hello"),
    		}},
    	}, {
    		"GNU",
    		[]file{{
    			&Header{Name: "bar", Mode: 0640, Size: int64(3), Devmajor: -1},
    			[]byte("foo"),
    		}, {
    			&Header{Name: "world", Mode: 0640, Size: int64(5), Devmajor: -1},
    			[]byte("hello"),
    		}},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 25 00:25:45 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    		file: "testdata/gnu.tar",
    		headers: []*Header{{
    			Name:     "small.txt",
    			Mode:     0640,
    			Uid:      73025,
    			Gid:      5000,
    			Size:     5,
    			ModTime:  time.Unix(1244428340, 0),
    			Typeflag: '0',
    			Uname:    "dsymonds",
    			Gname:    "eng",
    			Format:   FormatGNU,
    		}, {
    			Name:     "small2.txt",
    			Mode:     0640,
    			Uid:      73025,
    			Gid:      5000,
    			Size:     11,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. cmd/metacache-set_gen.go

    		return
    	}
    	// write "AskDisks"
    	err = en.Append(0xa8, 0x41, 0x73, 0x6b, 0x44, 0x69, 0x73, 0x6b, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.AskDisks)
    	if err != nil {
    		err = msgp.WrapError(err, "AskDisks")
    		return
    	}
    	// write "InclDeleted"
    	err = en.Append(0xab, 0x49, 0x6e, 0x63, 0x6c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64)
    	if err != nil {
    		return
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 19 20:23:12 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. cmd/batch-job-common-types_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.Attempts)
    	if err != nil {
    		err = msgp.WrapError(err, "Attempts")
    		return
    	}
    	// write "Delay"
    	err = en.Append(0xa5, 0x44, 0x65, 0x6c, 0x61, 0x79)
    	if err != nil {
    		return
    	}
    	err = en.WriteDuration(z.Delay)
    	if err != nil {
    		err = msgp.WrapError(err, "Delay")
    		return
    	}
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  7. cmd/background-newdisks-heal-ops_gen.go

    	o = append(o, 0xde, 0x0, 0x1d, 0xa2, 0x49, 0x44)
    	o = msgp.AppendString(o, z.ID)
    	// string "PoolIndex"
    	o = append(o, 0xa9, 0x50, 0x6f, 0x6f, 0x6c, 0x49, 0x6e, 0x64, 0x65, 0x78)
    	o = msgp.AppendInt(o, z.PoolIndex)
    	// string "SetIndex"
    	o = append(o, 0xa8, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78)
    	o = msgp.AppendInt(o, z.SetIndex)
    	// string "DiskIndex"
    	o = append(o, 0xa9, 0x44, 0x69, 0x73, 0x6b, 0x49, 0x6e, 0x64, 0x65, 0x78)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 20 15:42:49 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            Comparable<?> c2 = newComparable("2");
    
            assertEquals(c1, c2, "reused instance should be equivalent to new instance");
        }
    
        /**
         * Test <a href="https://issues.apache.org/jira/browse/MNG-7644">MNG-7644</a> edge cases
         * 1.0.0.RC1 &lt; 1.0.0-RC2 and more generally:
         * 1.0.0.X1 &lt; 1.0.0-X2 for any string X
         */
        @Test
        void testMng7644() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2_test.go

    0x1c, 0xf, 0x98, 0xc4, 0x4, 0xea, 0x49, 0x78, 0x27, 0x1, 0x6, 0xc5, 0x1, 0x4b, 0x82, 0xa4, 0x54, 0x79, 0x70, 0x65, 0x1, 0xa5, 0x56, 0x32, 0x4f, 0x62, 0x6a, 0xde, 0x0, 0x11, 0xa2, 0x49, 0x44, 0xc4, 0x10, 0xdb, 0xaf, 0x9a, 0xe8, 0xda, 0xe0, 0x40, 0xa6, 0x80, 0xf2, 0x1c, 0x39, 0xe8, 0x7, 0x38, 0x2c, 0xa4, 0x44, 0x44, 0x69, 0x72, 0xc4, 0x10, 0x4f, 0xe7, 0xd7, 0xf3, 0x15, 0x2d, 0x4c, 0xcd, 0x96, 0x65, 0x24, 0x86, 0xdc, 0x2, 0x1b, 0xed, 0xa6, 0x45, 0x63, 0x41, 0x6c, 0x67, 0x6f, 0x1, 0xa3, 0x45, 0x63, 0x4d,...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1_gen.go

    	}
    	// write "VersionID"
    	err = en.Append(0xa9, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x44)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.VersionID)
    	if err != nil {
    		err = msgp.WrapError(err, "VersionID")
    		return
    	}
    	// write "DataDir"
    	err = en.Append(0xa7, 0x44, 0x61, 0x74, 0x61, 0x44, 0x69, 0x72)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.DataDir)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top