Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 1e1000000 (0.13 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply {
                    writeText(readText().replace("\\Q<lastUpdated>\\E\\d+\\Q</lastUpdated>\\E".toRegex(), "<lastUpdated>${Year.now().value}0101000000</lastUpdated>"))
                }
                localRepository.get().asFileTree.matching { include("**/*.module") }.forEach {
                    val content = it.readText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CLONE_ARGS_SIZE_VER1                        = 0x50
    	CLONE_ARGS_SIZE_VER2                        = 0x58
    	CLONE_CHILD_CLEARTID                        = 0x200000
    	CLONE_CHILD_SETTID                          = 0x1000000
    	CLONE_CLEAR_SIGHAND                         = 0x100000000
    	CLONE_DETACHED                              = 0x400000
    	CLONE_FILES                                 = 0x400
    	CLONE_FS                                    = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  3. src/syscall/zerrors_solaris_amd64.go

    	BPF_LD                        = 0x0
    	BPF_LDX                       = 0x1
    	BPF_LEN                       = 0x80
    	BPF_LSH                       = 0x60
    	BPF_MAJOR_VERSION             = 0x1
    	BPF_MAXBUFSIZE                = 0x1000000
    	BPF_MAXINSNS                  = 0x200
    	BPF_MEM                       = 0x60
    	BPF_MEMWORDS                  = 0x10
    	BPF_MINBUFSIZE                = 0x20
    	BPF_MINOR_VERSION             = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            def socket = new DatagramSocket(0, addressFactory.wildcardBindingAddress)
            (1..500).each {
                addressFactory.communicationAddresses.each { address ->
                    byte[] bytes = [1, 0, 0, 0, 0, 0, 0, 0, 0]
                    DatagramPacket confirmPacket = new DatagramPacket(bytes, bytes.length, address, receivingSocket.localPort)
                    socket.send(confirmPacket)
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/debug/buildinfo/buildinfo.go

    		IMAGE_SCN_MEM_READ               = 0x40000000
    		IMAGE_SCN_MEM_WRITE              = 0x80000000
    		IMAGE_SCN_MEM_DISCARDABLE        = 0x2000000
    		IMAGE_SCN_LNK_NRELOC_OVFL        = 0x1000000
    		IMAGE_SCN_ALIGN_32BYTES          = 0x600000
    	)
    	for _, sect := range x.f.Sections {
    		if sect.VirtualAddress != 0 && sect.Size != 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/time/time.go

    //	January 1, year 1, 00:00:00.000000000 UTC
    // which (1) looks like a zero, or as close as you can get in a date
    // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to
    // be a suitable "not set" sentinel, unlike Jan 1 1970, and (3) has a
    // non-negative year even in time zones west of UTC, unlike 1-1-0
    // 00:00:00 UTC, which would be 12-31-(-1) 19:00:00 in New York.
    //
    // The zero Time value does not force a specific epoch for the time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(7*1024*1024, -1, BinarySI), (7 * 1024 * 1024) * math.Pow10(-1)}, // '* Pow10' and '/ float(10)' do not round the same way
    		{decQuantity(7*1024*1024, -8, BinarySI), (7 * 1024 * 1024) / float64(100000000)},
    
    		{decQuantity(1024, 0, DecimalSI), 1024},
    		{decQuantity(8*1024, 0, DecimalSI), 8 * 1024},
    		{decQuantity(7*1024*1024, 0, DecimalSI), 7 * 1024 * 1024},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					"remove dups to make list valid",
    					myCRDV1Beta1,
    					myCRDInstanceName,
    					map[string]interface{}{
    						"values": map[string]interface{}{
    							"dups":       []interface{}{1, 3, 1000, 2000},
    							"otherField": []interface{}{1, 2, 3},
    						},
    					}},
    			},
    		},
    	}
    
    	runTests(t, cases)
    }
    
    func ptr[T any](v T) *T {
    	return &v
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	PERF_SAMPLE_CGROUP                    = 0x200000
    	PERF_SAMPLE_DATA_PAGE_SIZE            = 0x400000
    	PERF_SAMPLE_CODE_PAGE_SIZE            = 0x800000
    	PERF_SAMPLE_WEIGHT_STRUCT             = 0x1000000
    	PERF_SAMPLE_MAX                       = 0x2000000
    	PERF_SAMPLE_BRANCH_USER_SHIFT         = 0x0
    	PERF_SAMPLE_BRANCH_KERNEL_SHIFT       = 0x1
    	PERF_SAMPLE_BRANCH_HV_SHIFT           = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		if *cgo_yield != nil {
    			asmcgocall(*cgo_yield, nil)
    		}
    		// poll network if not polled for more than 10ms
    		lastpoll := sched.lastpoll.Load()
    		if netpollinited() && lastpoll != 0 && lastpoll+10*1000*1000 < now {
    			sched.lastpoll.CompareAndSwap(lastpoll, now)
    			list, delta := netpoll(0) // non-blocking - returns list of goroutines
    			if !list.empty() {
    				// Need to decrement number of idle locked M's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top