Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 9,026 for gives (0.16 sec)

  1. hack/README.md

    # Kubernetes hack GuideLines
    
    This document describes how you can use the scripts from [`hack`](.) directory 
    and gives a brief introduction and explanation of these scripts. 
    
    ## Overview
    
    The [`hack`](.) directory contains many scripts that ensure continuous development of kubernetes, 
    enhance the robustness of the code, improve development efficiency, etc. 
    The explanations and descriptions of these scripts are helpful for contributors. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 16 02:12:18 UTC 2020
    - 1K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

    import com.intellij.openapi.application.ApplicationManager
    import org.jetbrains.kotlin.analysis.api.platform.KotlinOptionalPlatformComponent
    
    /**
     * [KotlinAnalysisPermissionOptions] gives an Analysis API platform the choice whether to allow analysis on the EDT and in write actions by
     * default.
     *
     * @see KotlinDefaultAnalysisPermissionOptions
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/log/slog/internal/buffer/buffer.go

    // Package buffer provides a pool-allocated byte buffer.
    package buffer
    
    import "sync"
    
    // buffer adapted from go/src/fmt/print.go
    type Buffer []byte
    
    // Having an initial size gives a dramatic speedup.
    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

            where:
            expression                        | _
            "new File(projectDir, 'testdir')" | _
            "new File('testdir').toPath()"    | _
            "'testdir'"                       | _
        }
    
        def "gives reasonable error message when value cannot be converted to file"() {
            buildFile """
    def f = file(12)
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/log/slog/internal/benchmarks/benchmarks.go

    //     logs).
    //
    //   - Some handlers are optimistic versions of real handlers, doing real-world
    //     tasks as fast as possible (and sometimes faster, in that an
    //     implementation may not be concurrency-safe). This gives us an upper bound
    //     on handler performance, so we can evaluate the (handler-independent) core
    //     activity of the package in an end-to-end context without concern that a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/generic.go

    	return f.informer
    }
    
    // Lister returns the GenericLister.
    func (f *genericInformer) Lister() cache.GenericLister {
    	return cache.NewGenericLister(f.Informer().GetIndexer(), f.resource)
    }
    
    // ForResource gives generic access to a shared informer of the matching type
    // TODO extend this to unknown resources with a client pool
    func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource) (GenericInformer, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalogsExtension.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.InvalidUserDataException;
    
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Gives access to all version catalogs available.
     *
     * @since 7.0
     */
    public interface VersionCatalogsExtension extends Iterable<VersionCatalog> {
    
        /**
         * Tries to find a catalog with the corresponding name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 27 23:38:43 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

    import java.util.concurrent.locks.ReentrantLock
    
    import kotlin.concurrent.withLock
    
    
    /**
     * A queue that gives priority to the most recently pushed element.
     */
    internal
    class ConcurrentGroupingQueue<T>(
    
        /**
         * Predicate to check whether the given most recently pushed element (the receiver)
         * supersedes the given less recent element (the argument).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/MoreMemorySampleModifier.java

    import org.gradle.exemplar.model.Sample;
    import org.gradle.exemplar.test.runner.SampleModifier;
    import org.gradle.util.internal.GUtil;
    
    import java.io.File;
    import java.util.Properties;
    
    /**
     * Gives the sample tests more metaspace, as we currently never collect old buildSrc/buildscript classloaders.
     */
    public class MoreMemorySampleModifier implements SampleModifier {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top