Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 493 for winter (0.07 sec)

  1. src/image/gif/writer.go

    			return i
    		}
    	}
    	return -1
    }
    
    // writer is a buffered writer.
    type writer interface {
    	Flush() error
    	io.Writer
    	io.ByteWriter
    }
    
    // encoder encodes an image to the GIF format.
    type encoder struct {
    	// w is the writer to write to. err is the first error encountered during
    	// writing. All attempted writes after the first error become no-ops.
    	w   writer
    	err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/internal/weak/pointer.go

    // will not compare equal.
    // If a weak pointer is created from an object that becomes reachable again due
    // to a finalizer, that weak pointer will not compare equal with weak pointers
    // created before it became unreachable.
    type Pointer[T any] struct {
    	u unsafe.Pointer
    }
    
    // Make creates a weak pointer from a strong pointer to some value of type T.
    func Make[T any](ptr *T) Pointer[T] {
    	// Explicitly force ptr to escape to the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/pinner.go

    // are going to be accessed from C code.
    //
    // The argument must be a pointer of any type or an [unsafe.Pointer].
    // It's safe to call Pin on non-Go pointers, in which case Pin will do nothing.
    func (p *Pinner) Pin(pointer any) {
    	if p.pinner == nil {
    		// Check the pinner cache first.
    		mp := acquirem()
    		if pp := mp.p.ptr(); pp != nil {
    			p.pinner = pp.pinnerCache
    			pp.pinnerCache = nil
    		}
    		releasem(mp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/sds/writer.go

    }
    
    // NewSDSWriter generates a new instance which conforms to SDSWriter interface
    func NewSDSWriter(w io.Writer, format Format) SDSWriter {
    	return &sdsWriter{
    		w:      w,
    		output: format,
    	}
    }
    
    // sdsWriter is provided concrete implementation of SDSWriter
    type sdsWriter struct {
    	w      io.Writer
    	output Format
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 21 14:17:23 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    	namespaces.Start(stop)
    	kube.WaitForCacheSync("discovery filter", stop, namespaces.HasSynced)
    	f.selectorsChanged(mesh.Mesh().GetDiscoverySelectors(), false)
    	return f
    }
    
    func (d *discoveryNamespacesFilter) notifyHandlersLocked(added sets.Set[string], removed sets.String) {
    	for _, h := range d.handlers {
    		h(added, removed)
    	}
    }
    
    func (d *discoveryNamespacesFilter) Filter(obj any) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	bindTimeout time.Duration) SchedulerVolumeBinder {
    	b := &volumeBinder{
    		kubeClient:    kubeClient,
    		podLister:     podInformer.Lister(),
    		classLister:   storageClassInformer.Lister(),
    		nodeLister:    nodeInformer.Lister(),
    		csiNodeLister: csiNodeInformer.Lister(),
    		pvcCache:      NewPVCAssumeCache(logger, pvcInformer.Informer()),
    		pvCache:       NewPVAssumeCache(logger, pvInformer.Informer()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	}
    	return NewFilter(compilationResults)
    }
    
    // filter implements the Filter interface
    type filter struct {
    	compilationResults []CompilationResult
    }
    
    func NewFilter(compilationResults []CompilationResult) Filter {
    	return &filter{
    		compilationResults,
    	}
    }
    
    func convertObjectToUnstructured(obj interface{}) (*unstructured.Unstructured, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. .mailmap

    Luke Daley <******@****.***> <Luke Daley@.(none)>
    Luke Daley <******@****.***> <******@****.***>
    Luke Daley <******@****.***> <luke@trajan.(none)>
    Lóránt Pintér <******@****.***>
    Lóránt Pintér <******@****.***> <lorant.pinter@gmail.com>
    Lóránt Pintér <******@****.***> <lorant.pinter@prezi.com>
    Marcin Erdmann <******@****.***> <******@****.***>
    Marco Vermeulen <******@****.***> <******@****.***>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 06:34:28 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=inter c -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=root",
    			},
    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. src/internal/abi/iface.go

    // is implementing (Inter), and some ancillary information.
    //
    // allocated in non-garbage-collected memory
    type ITab struct {
    	Inter *InterfaceType
    	Type  *Type
    	Hash  uint32     // copy of Type.Hash. Used for type switches.
    	Fun   [1]uintptr // variable sized. fun[0]==0 means Type does not implement Inter.
    }
    
    // EmptyInterface describes the layout of a "interface{}" or a "any."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 895 bytes
    - Viewed (0)
Back to top