Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for Paging (0.09 sec)

  1. src/runtime/os3_plan9.go

    		// the stack frame but we're not going back there
    		// anyway.
    		if usesLR {
    			c.savelr(c.lr())
    		}
    
    		// If PC == 0, probably panicked because of a call to a nil func.
    		// Not faking that as the return address will make the trace look like a call
    		// to sigpanic instead. (Otherwise the trace will end at
    		// sigpanic and we won't get to see who faulted).
    		if pc != 0 {
    			if usesLR {
    				c.setlr(pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/KaAnalysisPermissionRegistry.kt

     * [allowAnalysisFromWriteAction].
     *
     * [KaAnalysisPermissionRegistry] is an *application service* because we want users to call permission functions without having to pass a
     * project, which would be required if this class was a project service.
     */
    @KaAnalysisApiInternals
    public interface KaAnalysisPermissionRegistry {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

    import org.gradle.internal.reflect.Instantiator;
    
    /**
     * Default implementation of {@link ResolutionOutputsInternal}. This class is in charge of
     * converting internal results in the form of {@link ResolverResults} into public facing types like:
     *
     * <ul>
     *     <li>{@link org.gradle.api.file.FileCollection}</li>
     *     <li>{@link org.gradle.api.artifacts.ArtifactCollection}</li>
     *     <li>{@link org.gradle.api.artifacts.ArtifactView}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/kube/krt/core.go

    // we only expose some functions to external users for simplicity.
    type internalCollection[T any] interface {
    	Collection[T]
    
    	// Name is a human facing name for this collection.
    	// Note this may not be universally unique
    	name() string
    	// Uid is an internal unique ID for this collection. MUST be globally unique
    	uid() collectionUID
    
    	dump()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    func (m MockEtcdClient) getVersion(endpoint string) (string, error) {
    	for _, ev := range m.EndpointVersion {
    		if ev.Endpoint == endpoint {
    			return ev.Version, ev.Error
    		}
    	}
    	// Never should happen, unless tests having a problem.
    	return "", fmt.Errorf("No version found")
    }
    
    func (m *MockEtcdClient) Endpoints() []string {
    	return m.getEndpoints()
    }
    
    // Status returns a mock status response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		// will better follow the intent of the user. At one point CpuWeights were set, but this prevented limits from having any effect.
    
    		// There are 3 parts to how this works:
    		// Part one - Windows kernel
    		//   cpuMaximum is documented at https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/resource-controls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                }
    
                storedState.updates
                    .filter { update ->
                        // Only loaded properties can be overridden.
                        // Mutated properties are taking precedence over overridden because the
                        // first ones defined in build logic, hence we want to restore it.
                        update !is SystemPropertyLoad || !overriddenSystemProperties.contains(update.key)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/path-params-numeric-validations.md

        These functions are there (instead of just using the classes directly) so that your editor doesn't mark errors about their types.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cmd/erasure-healing.go

    			VersionID: versionID,
    		})
    		errs = make([]error, len(errs))
    		if derr == nil {
    			derr = errFileNotFound
    			if versionID != "" {
    				derr = errFileVersionNotFound
    			}
    			// We did find a new danging object
    			return er.defaultHealResult(m, storageDisks, storageEndpoints,
    				errs, bucket, object, versionID), derr
    		}
    		return er.defaultHealResult(m, storageDisks, storageEndpoints,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  10. 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)
Back to top