Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,434 for Allows (0.13 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

         */
        public open fun computePackageNames(): Set<String>? = null
    
        /**
         * Whether the declaration provider has a specific implementation of [computePackageNamesWithTopLevelClassifiers]. This allows the
         * Analysis API backend to determine whether classifier package sets are computed and cached separately or with [computePackageNames].
         */
        public abstract val hasSpecificClassifierPackageNamesComputation: Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/net/sockopt_windows.go

    	// SO_REUSEADDR should not be used here, as it allows
    	// a socket to forcibly bind to a port in use by another socket.
    	// This could lead to a non-deterministic behavior, where
    	// connection requests over the port cannot be guaranteed
    	// to be handled by the correct socket.
    	return nil
    }
    
    func setDefaultMulticastSockopts(s syscall.Handle) error {
    	// Allow multicast UDP and raw IP datagram sockets to listen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     */
    
    package org.gradle.workers;
    
    import org.gradle.api.Action;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Allows work to be submitted for asynchronous execution.  This api allows for safe, concurrent execution of work items and enables:
     *
     * <ul>
     *     <li>Parallel execution of work items within a single task</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. releasenotes/notes/56781.yaml

    area: installation
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/CatalogPluginExtension.java

     */
    package org.gradle.api.plugins.catalog;
    
    import org.gradle.api.Action;
    import org.gradle.api.initialization.dsl.VersionCatalogBuilder;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Allows configuring a version catalog.
     *
     * @since 7.0
     */
    @HasInternalProtocol
    public interface CatalogPluginExtension {
        /**
         * Configures the version catalog.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

        }
    
        def "creates distinct providers for different identities"() {
            expect:
            factory.provide(PasswordCredentials, 'id') != factory.provide(PasswordCredentials, 'id2')
        }
    
        def "allows same identity for different credential types"() {
            expect:
            factory.provide(PasswordCredentials, 'id') != factory.provide(AwsCredentials, 'id')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. pkg/config/schema/generate.go

    package schema
    
    // Create collection constants.
    // We will generate collections twice. Once is the full collection set.
    // The other includes only Istio types, with build tags set for agent.
    // This allows the agent to use collections without importing all of Kubernetes libraries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 923 bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/feature/feature.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    	EnableVolumeCapacityPriority                 bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pkg/controller/endpointslicemirroring/reconciler.go

    	endpointSliceTracker *endpointsliceutil.EndpointSliceTracker
    
    	// eventRecorder allows reconciler to record an event if it finds an invalid
    	// IP address in an Endpoints resource.
    	eventRecorder record.EventRecorder
    
    	// maxEndpointsPerSubset references the maximum number of endpoints that
    	// should be added to an EndpointSlice for an EndpointSubset. This allows
    	// for a simple 1:1 mapping between EndpointSubset and EndpointSlice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/testing/mock_pod_status_provider.go

    func NewMockPodManager(ctrl *gomock.Controller) *MockPodManager {
    	mock := &MockPodManager{ctrl: ctrl}
    	mock.recorder = &MockPodManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockPodManager) EXPECT() *MockPodManagerMockRecorder {
    	return m.recorder
    }
    
    // GetMirrorPodByPod mocks base method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top