Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for MASK (0.1 sec)

  1. cmd/globals.go

    	globalTrace = pubsub.New[madmin.TraceInfo, madmin.TraceType](8)
    
    	// global Listen system to send S3 API events to registered listeners
    	globalHTTPListen = pubsub.New[event.Event, pubsub.Mask](0)
    
    	// global console system to send console logs to
    	// registered listeners
    	globalConsoleSys *HTTPConsoleLoggerSys
    
    	// All unique drives for this deployment
    	globalEndpoints EndpointServerPools
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    				} else if cidr, cidrErr := netip.ParsePrefix(address); cidrErr == nil {
    					newAddress := address
    					if cidr.Bits() == cidr.Addr().BitLen() {
    						// /32 mask. Remove the /32 and make it a normal IP address
    						newAddress = cidr.Addr().String()
    					}
    					hostAddresses = append(hostAddresses, &HostAddress{hostname, newAddress})
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    		log.Debugf("adding pod %s probe to ipset %s with ip %s", pod.Name, hostsideProbeSet.Prefix, pip)
    		// Add IP/port combo to set. Note that we set Replace to false here - we _did_ previously
    		// set it to true, but in theory that could mask weird scenarios where K8S triggers events out of order ->
    		// an add(sameIPreused) then delete(originalIP).
    		// Which will result in the new pod starting to fail healthchecks.
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/controlplane/instance_test.go

    		Extra: Extra{
    			APIServerServicePort:   443,
    			MasterCount:            1,
    			EndpointReconcilerType: reconcilers.MasterCountReconcilerType,
    			ServiceIPRange:         net.IPNet{IP: netutils.ParseIPSloppy("10.0.0.0"), Mask: net.CIDRMask(24, 32)},
    		},
    	}
    
    	storageFactoryConfig := kubeapiserver.NewStorageFactoryConfig()
    	storageConfig.StorageObjectCountTracker = config.ControlPlane.Generic.StorageObjectCountTracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    		if finc == nil {
    			finc = (*finblock)(persistentalloc(_FinBlockSize, 0, &memstats.gcMiscSys))
    			finc.alllink = allfin
    			allfin = finc
    			if finptrmask[0] == 0 {
    				// Build pointer mask for Finalizer array in block.
    				// Check assumptions made in finalizer1 array above.
    				if (unsafe.Sizeof(finalizer{}) != 5*goarch.PtrSize ||
    					unsafe.Offsetof(finalizer{}.fn) != 0 ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    	// The perm argument is meant to be adjusted according to umask,
    	// but we don't know what the umask is.
    	// Create a dummy file to find out.
    	// This avoids build tags and works even on systems like Plan 9
    	// where the file mask computation incorporates other information.
    	mode := perm
    	f, err := os.OpenFile(filepath.Clean(dst)+"-go-tmp-umask", os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    	if err == nil {
    		fi, err := f.Stat()
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    	k = bigmod.NewNat()
    	for {
    		b := make([]byte, c.N.Size())
    		if _, err = io.ReadFull(rand, b); err != nil {
    			return
    		}
    
    		// Mask off any excess bits to increase the chance of hitting a value in
    		// (0, N). These are the most dangerous lines in the package and maybe in
    		// the library: a single bit of bias in the selection of nonces would likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "RLWINM", argLength: 1, reg: gp11, asm: "RLWNM", aux: "Int64"},                           // Rotate and mask by immediate "rlwinm". encodePPC64RotateMask describes aux
    		{name: "RLWNM", argLength: 2, reg: gp21, asm: "RLWNM", aux: "Int64"},                            // Rotate and mask by "rlwnm". encodePPC64RotateMask describes aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    	pollExpiredWriteDeadline
    	pollFDSeq // 20 bit field, low 20 bits of fdseq field
    )
    
    const (
    	pollFDSeqBits = 20                   // number of bits in pollFDSeq
    	pollFDSeqMask = 1<<pollFDSeqBits - 1 // mask for pollFDSeq
    )
    
    func (i pollInfo) closing() bool              { return i&pollClosing != 0 }
    func (i pollInfo) eventErr() bool             { return i&pollEventErr != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/syscall/fs_wasip1.go

    	// Some runtimes have very strict expectations when it comes to which
    	// rights can be enabled on files opened by path_open. The fileRights
    	// constant is used as a mask to retain only bits for operations that
    	// are supported on files.
    	fileRights rights = RIGHT_FD_DATASYNC |
    		RIGHT_FD_READ |
    		RIGHT_FD_SEEK |
    		RIGHT_FDSTAT_SET_FLAGS |
    		RIGHT_FD_SYNC |
    		RIGHT_FD_TELL |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top