Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,084 for Allows (0.18 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderFactory.kt

    public abstract class KotlinPackageProviderFactory : KotlinPlatformComponent {
        public abstract fun createPackageProvider(searchScope: GlobalSearchScope): KotlinPackageProvider
    }
    
    /**
     * [KotlinPackageProviderMerger] allows merging multiple [KotlinPackageProvider]s into a more efficient package provider.
     *
     * Package providers should not be naively merged by combining scopes and calling [createPackageProvider], because there may be additional
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowActionSpec.java

     * limitations under the License.
     */
    
    package org.gradle.api.flow;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Allows configuring the parameters for a {@link FlowAction dataflow action}.
     *
     * @param <P> the parameters defined by the configured {@link FlowAction dataflow action} type.
     * @since 8.1
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 18:52:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	// pulls to burst to this number, while still not exceeding registryPullQPS.
    	// Only used if registryPullQPS > 0.
    	RegistryBurst int32
    	// eventRecordQPS is the maximum event creations per second. If 0, there
    	// is no limit enforced.
    	EventRecordQPS int32
    	// eventBurst is the maximum size of a burst of event creations, temporarily
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

    import com.intellij.openapi.project.Project
    import com.intellij.util.messages.MessageBus
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTopics
    
    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

        /**
         * Creates a new cache instance whose keys are Class instances. Keys are referenced using strong or weak references, values by strong or soft references depending on their usage.
         * This allows the classes to be collected.
         *
         * <p>Clients should assume that entries may be removed at any time, based on current memory pressure and the likelihood that the entry will be required again soon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. docs/distributed/CONFIG.md

    MinIO server configuration file allows users to provide topology that allows for heterogeneous hostnames, allowing MinIO to deployed in pre-existing environments without any further OS level configurations.
    
    ### Usage
    
    ```
    minio server --config config.yaml
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/kube/apimirror/probe.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package apimirror contains copies of Kubernetes APIs. This allows json serialization, without worrying about
    // importing the massive 15mb+ Kubernetes API libraries.
    // This is intended for import only by istio-agent. Any other binaries (Istiod) should likely import the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/FixedTypeDiscovery.kt

    package org.gradle.internal.declarativedsl.evaluationSchema
    
    import org.gradle.internal.declarativedsl.schemaBuilder.TypeDiscovery
    import kotlin.reflect.KClass
    
    
    /**
     * Utility [TypeDiscovery] implementation that allows introducing [discoverClasses] as soon as [keyClass] is encountered in type discovery.
     */
    internal
    class FixedTypeDiscovery(private val keyClass: KClass<*>, private val discoverClasses: List<KClass<*>>) : TypeDiscovery {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 17:51:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	Disabled bool
    }
    
    // ImageMeta allows to customize the image used for components that are not
    // originated from the Kubernetes/Kubernetes release process
    type ImageMeta struct {
    	// ImageRepository sets the container registry to pull images from.
    	// if not set, the ImageRepository defined in ClusterConfiguration will be used instead.
    	ImageRepository string
    
    	// ImageTag allows to specify a tag for the image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top