Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for NP (0.02 sec)

  1. pkg/registry/core/service/storage/alloc.go

    			// looking for any user provided values.
    			np := findRequestedNodePort(int(servicePort.Port), service.Spec.Ports)
    			if np != 0 {
    				err := nodePortOp.Allocate(np)
    				if err != nil {
    					// TODO: when validation becomes versioned, this gets more complicated.
    					el := field.ErrorList{field.Invalid(field.NewPath("spec", "ports").Index(i).Child("nodePort"), np, err.Error())}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  2. src/cmd/covdata/dump.go

    	// package/function combinations. This will help catch bugs in the
    	// counter file reader.
    	d.pkm = make(map[uint32]uint32)
    	np := uint32(mfr.NumPackages())
    	payload := []byte{}
    	for pkIdx := uint32(0); pkIdx < np; pkIdx++ {
    		var pd *decodemeta.CoverageMetaDataDecoder
    		var err error
    		pd, payload, err = mfr.GetPackageDecoder(pkIdx, payload)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

         * otherwise the connection will be disconnected once the usage drops to zero.
         * 
         * @param np
         *            whether to use an exclusive connection
         */
        void setNonPooled ( boolean np ) {
            this.nonPooled = np;
        }
    
    
        /**
         * @return the currently connected tid
         */
        @SuppressWarnings ( "resource" )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/unicode/utf8/utf8.go

    func RuneCount(p []byte) int {
    	np := len(p)
    	var n int
    	for i := 0; i < np; {
    		n++
    		c := p[i]
    		if c < RuneSelf {
    			// ASCII fast path
    			i++
    			continue
    		}
    		x := first[c]
    		if x == xx {
    			i++ // invalid.
    			continue
    		}
    		size := int(x & 7)
    		if i+size > np {
    			i++ // Short or invalid.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache.go

    			// all the nodes are updated before the existing snapshot. We are done.
    			break
    		}
    		if np := node.info.Node(); np != nil {
    			existing, ok := nodeSnapshot.nodeInfoMap[np.Name]
    			if !ok {
    				updateAllLists = true
    				existing = &framework.NodeInfo{}
    				nodeSnapshot.nodeInfoMap[np.Name] = existing
    			}
    			clone := node.info.Snapshot()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  6. src/debug/gosym/symtab.go

    				continue
    			}
    
    			// Count parameter and local (auto) syms
    			var np, na int
    			var end int
    		countloop:
    			for end = i + 1; end < len(t.Syms); end++ {
    				switch t.Syms[end].Type {
    				case 'T', 't', 'L', 'l', 'Z', 'z':
    					break countloop
    				case 'p':
    					np++
    				case 'a':
    					na++
    				}
    			}
    
    			// Fill in the function symbol
    			n := len(t.Funcs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage.go

    		// Map NodePorts by name.  The user may have changed other properties
    		// of the port, but we won't see that here.
    		np := map[string]int32{}
    		for i := range oldSvc.Spec.Ports {
    			p := &oldSvc.Spec.Ports[i]
    			np[p.Name] = p.NodePort
    		}
    
    		// If newSvc is missing values, try to patch them in when we know them and
    		// they haven't been used for another port.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. cmd/storage-datatypes.go

    type RenameOptions struct {
    	BaseOptions
    }
    
    // DiskInfoOptions options for requesting custom results.
    type DiskInfoOptions struct {
    	DiskID  string `msg:"id"`
    	Metrics bool   `msg:"m"`
    	NoOp    bool   `msg:"np"`
    }
    
    // DiskInfo is an extended type which returns current
    // disk usage per path.
    // The above means that any added/deleted fields are incompatible.
    //
    // The above means that any added/deleted fields are incompatible.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	if err = sysctl(mib, nil, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	// Now that we know the size, get the actual nodes.
    	nodes = make([]Sysctlnode, olen/sz)
    	np := (*byte)(unsafe.Pointer(&nodes[0]))
    	if err = sysctl(mib, np, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	return nodes, nil
    }
    
    func nametomib(name string) (mib []_C_int, err error) {
    	// Split name into components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. cmd/storage-rest-server.go

    	if !s.checkID(p.DiskID) {
    		return np, grid.NewRemoteErr(errDiskNotFound)
    	}
    	volume := p.Volume
    	filePath := p.FilePath
    	forceDelMarker := p.ForceDelMarker
    
    	opts := DeleteOptions{}
    	err := s.getStorage().DeleteVersion(context.Background(), volume, filePath, p.FI, forceDelMarker, opts)
    	return np, grid.NewRemoteErr(err)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top