Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 386 for Implementation (0.61 sec)

  1. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			t.Errorf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
    			return
    		}
    		rangeAllocator, ok := allocator.(*rangeAllocator)
    		if !ok {
    			t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
    			return
    		}
    		rangeAllocator.nodesSynced = test.AlwaysReady
    		rangeAllocator.recorder = testutil.NewFakeRecorder()
    		go allocator.Run(tCtx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    var testingOnlyRejectionSamplingLooped func()
    
    // errNoAsm is returned by signAsm and verifyAsm when the assembly
    // implementation is not available.
    var errNoAsm = errors.New("no assembly implementation available")
    
    // SignASN1 signs a hash (which should be the result of hashing a larger message)
    // using the private key, priv. If the hash is longer than the bit-length of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_server_journal.go

    	// Support for this is implementation specific and only available for service logs.
    	TailLines *int
    	// Boot show messages from a specific boot. Allowed values are less than 1. Passing an invalid boot offset will fail
    	// retrieving logs and return an error. Support for this is implementation specific
    	Boot *int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			c.releaseLock(state)
    			return
    		}
    	}
    }
    
    // Read reads the given counter.
    // This is the implementation of x/telemetry/counter/countertest.ReadCounter.
    func Read(c *Counter) (uint64, error) {
    	if c.file.current.Load() == nil {
    		return c.state.load().extra(), nil
    	}
    	pf, err := readFile(c.file)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm.go

    	// may be overwritten.
    	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)
    }
    
    // gcmAble is an interface implemented by ciphers that have a specific optimized
    // implementation of GCM, like crypto/aes. NewGCM will check for this interface
    // and return the specific AEAD if found.
    type gcmAble interface {
    	NewGCM(nonceSize, tagSize int) (AEAD, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/prog.go

    	// This is effectively the versioning mechanism.
    	can map[ProgCmd]bool
    
    	// fuzzDirCache is another Cache implementation to use for the FuzzDir
    	// method. In practice this is the default GOCACHE disk-based
    	// implementation.
    	//
    	// TODO(bradfitz): maybe this isn't ideal. But we'd need to extend the Cache
    	// interface and the fuzzing callers to be less disk-y to do more here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    // election record to be accurate because these timestamps may not have been
    // produced by a local clock. The implementation does not depend on their
    // accuracy and only uses their change to indicate that another client has
    // renewed the leader lease. Thus the implementation is tolerant to arbitrary
    // clock skew, but is not tolerant to arbitrary clock skew rate.
    //
    // However the level of tolerance to skew rate can be configured by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/expand/expand_controller.go

    	return nil, fmt.Errorf("NewWrapperMounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) NewWrapperUnmounter(volName string, spec volume.Spec, podUID types.UID) (volume.Unmounter, error) {
    	return nil, fmt.Errorf("NewWrapperUnmounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) GetMounter(pluginName string) mount.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/fake_listers.go

    		namespace: namespace,
    	}
    }
    
    // List returns v1.ServiceList, the list of all services.
    func (f ServiceLister) List(labels.Selector) ([]*v1.Service, error) {
    	return f, nil
    }
    
    // serviceNamespaceLister is implementation of ServiceNamespaceLister returned by Services() above.
    type serviceNamespaceLister struct {
    	services  []*v1.Service
    	namespace string
    }
    
    func (f *serviceNamespaceLister) Get(name string) (*v1.Service, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/io/io.go

    // Package io provides basic interfaces to I/O primitives.
    // Its primary job is to wrap existing implementations of such primitives,
    // such as those in package os, into shared public interfaces that
    // abstract the functionality, plus some other related primitives.
    //
    // Because these interfaces and primitives wrap lower-level operations with
    // various implementations, unless otherwise informed clients should not
    // assume they are safe for parallel execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top