Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Lm (0.03 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

                return null;
            }
    
            ASN1ObjectIdentifier[] lm = this.mechs;
            byte[] ml = encodeMechs(lm);
            byte[] mechanismListMIC = this.mechContext.calculateMIC(ml);
            if ( log.isDebugEnabled() ) {
                log.debug("Out Mech list " + Arrays.toString(lm));
                log.debug("Out Mech list encoded " + Hexdump.toHexString(ml));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		sparse: map[uint64]*Location{},
    	}
    }
    
    func (lm locationIDMap) get(id uint64) *Location {
    	if id < uint64(len(lm.dense)) {
    		return lm.dense[int(id)]
    	}
    	return lm.sparse[id]
    }
    
    func (lm locationIDMap) set(id uint64, loc *Location) {
    	if id < uint64(len(lm.dense)) {
    		lm.dense[id] = loc
    		return
    	}
    	lm.sparse[id] = loc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. operator/pkg/tpath/tree.go

    			// non-leaf list, expect to match item by key:value.
    			if lm, ok := le.(map[any]any); ok {
    				k, v, err := util.PathKV(pe)
    				if err != nil {
    					return nil, false, fmt.Errorf("path %s: %s", fullPath, err)
    				}
    				if stringsEqual(lm[k], v) {
    					scope.Debugf("found matching kv %v:%v", k, v)
    					nn := &PathContext{
    						Parent: nc,
    						Node:   lm,
    					}
    					nc.KeyToChild = idx
    					nn.KeyToChild = k
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/match.go

    	for i, lm := range language.AliasMap {
    		// If deprecated codes match and there is no fiddling with the script
    		// or region, we consider it an exact match.
    		conf := Exact
    		if language.AliasTypes[i] != language.Macro {
    			if !isExactEquivalent(language.Language(lm.From)) {
    				conf = High
    			}
    			update(lm.To, lm.From, conf)
    		}
    		update(lm.From, lm.To, conf)
    	}
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		mappings := []*Mapping{p.Mapping[0]}
    		for _, m := range p.Mapping[1:] {
    			lm := mappings[len(mappings)-1]
    			if adjacent(lm, m) {
    				lm.Limit = m.Limit
    				if m.File != "" {
    					lm.File = m.File
    				}
    				if m.BuildID != "" {
    					lm.BuildID = m.BuildID
    				}
    				p.updateLocationMapping(m, lm)
    				continue
    			}
    			mappings = append(mappings, m)
    		}
    		p.Mapping = mappings
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. cmd/object-api-datatypes.go

    	UserDefined map[string]string
    
    	// ChecksumAlgorithm if set
    	ChecksumAlgorithm string
    }
    
    // Lookup - returns if uploadID is valid
    func (lm ListMultipartsInfo) Lookup(uploadID string) bool {
    	for _, upload := range lm.Uploads {
    		if upload.UploadID == uploadID {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller.go

    }
    
    func mergeLabels(labels ...map[string]string) map[string]string {
    	if len(labels) == 0 {
    		return map[string]string{}
    	}
    	out := make(map[string]string, len(labels)*len(labels[0]))
    	for _, lm := range labels {
    		for k, v := range lm {
    			out[k] = v
    		}
    	}
    	return out
    }
    
    var workloadGroupIsController = true
    
    func workloadEntryFromGroup(name string, proxy *model.Proxy, groupCfg *config.Config) *config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-ECDSA

    000002a0  f9 60 00 8b 30 81 88 02  42 01 b2 fb f8 5f d0 14  |.`..0...B...._..|
    000002b0  9d 3c 55 0f 16 50 6f d5  0c 4c 3e 73 2e a9 23 5f  |.<U..Po..L>s..#_|
    000002c0  e8 9c 02 5d 4c 6d b0 c1  9e 0d ac 59 36 6c d5 c2  |...]Lm.....Y6l..|
    000002d0  4c 94 94 94 6f a4 df 26  1a 54 f5 74 b8 49 75 49  |L...o..&.T.t.IuI|
    000002e0  9c aa cd 91 24 f3 52 88  6a 1e 80 02 42 01 81 a2  |....$.R.j...B...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. cmd/storage-datatypes.go

    	// Name of the volume.
    	Volume string `msg:"v,omitempty"`
    
    	// Name of the file.
    	Name string `msg:"n,omitempty"`
    
    	// Represents the latest mod time of the
    	// latest version.
    	LatestModTime time.Time `msg:"lm"`
    
    	Versions     []FileInfo `msg:"vs"`
    	FreeVersions []FileInfo `msg:"fvs"`
    }
    
    // findVersionIndex will return the version index where the version
    // was found. Returns -1 if not found.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Configuration.java

        /**
         * Lanman compatibility level
         * 
         * {@href https://technet.microsoft.com/en-us/library/cc960646.aspx}
         * 
         * 
         * <table>
         * <tr>
         * <td>0 or 1</td>
         * <td>LM and NTLM</td>
         * </tr>
         * <tr>
         * <td>2</td>
         * <td>NTLM only</td>
         * </tr>
         * <tr>
         * <td>3-5</td>
         * <td>NTLMv2 only</td>
         * </tr>
         * </table>
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top