Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for late (0.06 sec)

  1. src/cmd/compile/internal/types/type.go

    	return t.extra.(*Chan)
    }
    
    type Tuple struct {
    	first  *Type
    	second *Type
    	// Any tuple with a memory type must put that memory type second.
    }
    
    // Results are the output from calls that will be late-expanded.
    type Results struct {
    	Types []*Type // Last element is memory output from call.
    }
    
    // Array contains Type fields specific to array types.
    type Array struct {
    	Elem  *Type // element type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// overestimates the "true" live heap size. It's better to overestimate
    	// than to underestimate because 1) this triggers the GC earlier than
    	// necessary rather than potentially too late and 2) this leads to a
    	// conservative GC rate rather than a GC rate that is potentially too
    	// low.
    	//
    	// Whenever this is updated, call traceHeapAlloc() and
    	// this gcControllerState's revise() method.
    	heapLive atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The syntax for using ImplicitCast_ is the same as for static_cast:
    //
    //   ImplicitCast_<ToType>(expr)
    //
    // ImplicitCast_ would have been part of the C++ standard library,
    // but the proposal was submitted too late.  It will probably make
    // its way into the language in the future.
    //
    // This relatively ugly name is intentional. It prevents clashes with
    // similar functions users may have (e.g., implicit_cast). The internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // The syntax for using ImplicitCast_ is the same as for static_cast:
    //
    //   ImplicitCast_<ToType>(expr)
    //
    // ImplicitCast_ would have been part of the C++ standard library,
    // but the proposal was submitted too late.  It will probably make
    // its way into the language in the future.
    //
    // This relatively ugly name is intentional. It prevents clashes with
    // similar functions users may have (e.g., implicit_cast). The internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // bits in a type, PPC64 shifts do not (see the ISA for details).
    //
    // Note, y is always non-negative.
    //
    // Note, ISELZ is intentionally not used in lower. Where possible, ISEL is converted to ISELZ in late lower
    // after all the ISEL folding rules have been exercised.
    
    ((Rsh64U|Lsh64)x64 <t> x y)  => (ISEL [0] (S(R|L)D <t> x y) (MOVDconst [0])        (CMPUconst y [64]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    // simpler code to avoid floating point.
    func nextSampleNoFP() uintptr {
    	// Set first allocation sample size.
    	rate := MemProfileRate
    	if rate > 0x3fffffff { // make 2*rate not overflow
    		rate = 0x3fffffff
    	}
    	if rate != 0 {
    		return uintptr(cheaprandn(uint32(2 * rate)))
    	}
    	return 0
    }
    
    type persistentAlloc struct {
    	base *notInHeap
    	off  uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    		return nil
    	}
    
    	// Deliver pconn to goroutine waiting for idle connection, if any.
    	// (They may be actively dialing, but this conn is ready first.
    	// Chrome calls this socket late binding.
    	// See https://www.chromium.org/developers/design-documents/network-stack#TOC-Connection-Management.)
    	key := pconn.cacheKey
    	if q, ok := t.idleConnWait[key]; ok {
    		done := false
    		if pconn.alt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    thi...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle_test.go

    		modTime  time.Time
    		days     ExpirationDays
    		expected time.Time
    	}{
    		{
    			time.Date(2020, time.March, 15, 10, 10, 10, 0, time.UTC),
    			4,
    			time.Date(2020, time.March, 20, 0, 0, 0, 0, time.UTC),
    		},
    		{
    			time.Date(2020, time.March, 15, 0, 0, 0, 0, time.UTC),
    			1,
    			time.Date(2020, time.March, 17, 0, 0, 0, 0, time.UTC),
    		},
    	}
    
    	for i, tc := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                transformed()
            }
    
            when:
            withProjectConfig("b") {
                projectBuildDir = "out"
                outputFileName = "new"
                outputFileContent = "new"
                outputDirName = "b-blue"
            }
            succeeds(":a:resolve")
    
            then: // no change, should be up-to-date
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
Back to top