Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,144 for Allows (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	if rb.cfg.TraceLogging && idx >= 0 && command != log.UndefinedCommand {
    		match := params[:idx]
    		// 1337 group is just a random constant to be matched on the log reader side
    		// Size of 20 allows reading the IPv4 IP header.
    		match = append(match, "-j", "NFLOG", "--nflog-prefix", fmt.Sprintf(`%q`, command.Identifier), "--nflog-group", "1337", "--nflog-size", "20")
    		*ipt = append(*ipt, &Rule{
    			chain:  chain,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// to allow for quotation marks
    	MaxDatetimeSizeJSON = 32
    	// MinDurationSizeJSON
    	// Golang allows a string of 0 to be parsed as a duration, so that plus 2 to account for
    	// quotation marks makes 3
    	MinDurationSizeJSON = 3
    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    	JSONDateSize = 12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

            AllPluginsValidation(AbstractSmokeTest owner) {
                this.owner = owner
            }
    
            void alwaysPasses() {
                alwaysPasses = true
            }
    
            /**
             * Allows passing a predicate which tells if a plugin is supposed to
             * pass or not.
             * Because a plugin validation is independent of _which_ project it is
             * applied to, it doesn't care about the project path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/StandardStreamsCrossVersionSpec.groovy

    @TargetGradleVersion(">=4.0")
    class StandardStreamsCrossVersionSpec extends ToolingApiLoggingSpecification {
        @Rule RedirectStdOutAndErr stdOutAndErr = new RedirectStdOutAndErr()
        def escapeHeader = "\u001b["
    
        def "allows colored output with updated logging"() {
            file("build.gradle") << """
    task log {
        doLast { logger.quiet("Log message") }
    }
    """
    
            when:
            def output = new TestOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    		return err
    	}
    	return s.readyzRegistry.addHealthChecks(checks...)
    }
    
    // AddReadyzChecks allows you to add a HealthCheck to readyz.
    func (s *GenericAPIServer) AddReadyzChecks(checks ...healthz.HealthChecker) error {
    	return s.readyzRegistry.addHealthChecks(checks...)
    }
    
    // AddLivezChecks allows you to add a HealthCheck to livez.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top