Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Paging (0.11 sec)

  1. src/runtime/malloc.go

    	// to this, since the generated code can be more efficient,
    	// but comes at the cost of having a large L2 mapping.
    	//
    	// We use the L1 map on 64-bit Windows because the arena size
    	// is small, but the address space is still 48 bits, and
    	// there's a high cost to having a large L2.
    	arenaL1Bits = 6 * (_64bit * goos.IsWindows)
    
    	// arenaL2Bits is the number of bits of the arena number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	{
    		Value:     &PointerAnonFields{},
    		ExpectXML: `<PointerAnonFields></PointerAnonFields>`,
    	},
    
    	// Test that name casing matters
    	{
    		Value:     &NameCasing{Xy: "mixed", XY: "upper", XyA: "mixedA", XYA: "upperA"},
    		ExpectXML: `<casing Xy="mixedA" XY="upperA"><Xy>mixed</Xy><XY>upper</XY></casing>`,
    	},
    
    	// Test the order in which the XML element name is chosen
    	{
    		Value: &NamePrecedence{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def providerWithSideEffect = Providers.of(someValue()).withSideEffect(sideEffect)
            // `PropertyInternal` does not directly provide these setters,
            // but all user-facing interfaces and their implementations do.
            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. src/testing/testing.go

    //	    }
    //	    // Unordered output: 4
    //	    // 2
    //	    // 1
    //	    // 3
    //	    // 0
    //	}
    //
    // Example functions without output comments are compiled but not executed.
    //
    // The naming convention to declare examples for the package, a function F, a type T and
    // method M on type T are:
    //
    //	func Example() { ... }
    //	func ExampleF() { ... }
    //	func ExampleT() { ... }
    //	func ExampleT_M() { ... }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	//
    	// Stop if we're preemptible, if someone wants to STW, or if
    	// someone is calling forEachP.
    	//
    	// TODO(mknyszek): Consider always checking gp.preempt instead
    	// of having the preempt flag, and making an exception for certain
    	// mark workers in retake. That might be simpler than trying to
    	// enumerate all the reasons why we might want to preempt, even
    	// if we're supposed to be mostly non-preemptible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	// file table is already de-duped.
    	for i, name := range unit.FileTable {
    		name := expandFile(name)
    		if len(name) == 0 {
    			// Can't have empty filenames, and having a unique
    			// filename is quite useful for debugging.
    			name = fmt.Sprintf("<missing>_%d", i)
    		}
    		// Note the use of "path" here and not "filepath". The compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If a build configuration input has changed, Gradle will not use the entry and will run the configuration phase again as above, saving the result for later reuse.
    
    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    - Build scripts
    - System properties used during the configuration phase
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       * any of the provided futures fails or is canceled, its corresponding position will contain
       * {@code null} (which is indistinguishable from the future having a successful value of {@code
       * null}).
       *
       * <p>The list of results is in the same order as the input list.
       *
       * <p>This differs from {@link #allAsList(ListenableFuture[])} in that it's tolerant of failed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    	case _Semi:
    		return "semicolon or newline"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    		// So we don't need to exclude it with the other SP-writing functions.
    		flag &^= abi.FuncFlagSPWrite
    	}
    	if isSyscall {
    		// Some Syscall functions write to SP, but they do so only after
    		// saving the entry PC/SP using entersyscall.
    		// Since we are using the entry PC/SP, the later SP write doesn't matter.
    		flag &^= abi.FuncFlagSPWrite
    	}
    
    	// Found an actual function.
    	// Derive frame pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top