Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,018 for allDocs (0.12 sec)

  1. pkg/kubelet/userns/userns_manager_test.go

    		// The last ID of the userns range (allocated+userNsLength) should be within bounds.
    		assert.True(t, allocated <= minimumMappingUID+mappingLen-userNsLength)
    		allocs = append(allocs, allocated)
    	}
    	for i, v := range allocs {
    		assert.Equal(t, true, m.isSet(v), "m.isSet(%d) should be true", v)
    		m.Release(types.UID(fmt.Sprintf("%d", i)))
    		assert.Equal(t, false, m.isSet(v), "m.isSet(%d) should be false", v)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    // spanSetBlockAlloc represents a concurrent pool of spanSetBlocks.
    type spanSetBlockAlloc struct {
    	stack lfstack
    }
    
    // alloc tries to grab a spanSetBlock out of the pool, and if it fails
    // persistentallocs a new one and returns it.
    func (p *spanSetBlockAlloc) alloc() *spanSetBlock {
    	if s := (*spanSetBlock)(p.stack.pop()); s != nil {
    		return s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/testdata/localhost.yaml

    # This shows an example local config for ztunnel that adds a workload for localhost.
    # This allows local testing by sending requests through the local ztunnel to other servers running on localhost.
    workloads:
    - uid: cluster1//v1/Pod/default/local
      name: local
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.1"]
      protocol: HBONE
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    7. <<archiveoperations,`ArchiveOperations`>> - Allows a task to run operations on archive files such as ZIP or TAR files.
    8. <<execoperations,`ExecOperations`>> - Allows a task to run external processes with dedicated support for running external `java` programs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/TypeBuilder.java

     */
    @Incubating
    @HasInternalProtocol
    public interface TypeBuilder<T> {
    
        /**
         * Allows the plugin to register the implementation type.
         * @param implementation the implementation class.
         */
        TypeBuilder<T> defaultImplementation(Class<?> implementation);
    
        /**
         * Allows type registration rules to add internal views to the registered type.
         * @param internalView the internal view class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginResolutionStrategy.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.management;
    
    import org.gradle.api.Action;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Allows modification of {@link PluginRequest}s before they are resolved.
     *
     * @since 3.5
     */
    @HasInternalProtocol
    public interface PluginResolutionStrategy {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/storage/storage.go

    	var once sync.Once
    	return &Etcd{
    		alloc:     alloc,
    		storage:   storage,
    		baseKey:   baseKey,
    		resource:  config.GroupResource,
    		destroyFn: func() { once.Do(d) },
    	}, nil
    }
    
    // Allocate attempts to allocate the item.
    func (e *Etcd) Allocate(offset int) (bool, error) {
    	e.lock.Lock()
    	defer e.lock.Unlock()
    
    	err := e.tryUpdate(func() error {
    		ok, err := e.alloc.Allocate(offset)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/SampleIncludeProcessorTest.groovy

    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('println "hello world"')
        }
    
        def "allows sample included with multiple files"() {
            given:
            tmpDir.newFile("src/samples/build.gradle") << """
    task compile {
        doLast {
            println "compiling source"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go

    // tag of all data written to it with the given key.
    // This allows writing the message progressively instead
    // of passing it as a single slice. Common users should use
    // the Sum function instead.
    //
    // The key must be unique for each message, as authenticating
    // two different messages with the same key allows an attacker
    // to forge messages at will.
    func New(key *[32]byte) *MAC {
    	m := &MAC{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf_test.go

    				t.Fatal(err)
    			}
    
    			writer2 := &bytes.Buffer{}
    			alloc := &testAllocator{}
    			if err := target.EncodeWithAllocator(tc.obj, writer2, alloc); err != nil {
    				t.Fatal(err)
    			}
    			if alloc.allocateCount != 1 {
    				t.Fatalf("expected the Allocate method to be called exactly 1 but it was executed: %v times ", alloc.allocateCount)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top