Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Paging (0.12 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    	defer cacher.Stop()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    // When dependency resolution has failed, we don't want the build operation listeners to fail as well
                    // because:
                    // 1. the `failed` method will have been called with the user facing error
                    // 2. such an error may still lead to a valid dependency graph
                    MinimalResolutionResult resolutionResult = results.getVisitedGraph().getResolutionResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                          \--- org:in-conflict:2.0 (*)
    
                This is the simplest structure I could boil it down to that produces the error.
                - target *must* have a child
                - Having "b" depend directly on "in-conflict" does not produce the error, needs to go through "b-child"
             */
    
            mavenRepo.module("org", "target-child", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    		throw("gc done but gcphase != _GCoff")
    	}
    
    	// Record heapInUse for scavenger.
    	memstats.lastHeapInUse = gcController.heapInUse.load()
    
    	// Update GC trigger and pacing, as well as downstream consumers
    	// of this pacing information, for the next cycle.
    	systemstack(gcControllerCommit)
    
    	// Update timing memstats
    	now := nanotime()
    	sec, nsec, _ := time_now()
    	unixNow := sec*1e9 + int64(nsec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top