Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for Distinguishes (0.35 sec)

  1. prow/config/calico.yaml

                    type: string
                  interfacePrefix:
                    description: 'InterfacePrefix is the interface name prefix that identifies
                      workload endpoints and so distinguishes them from host endpoint
                      interfaces. Note: in environments other than bare metal, the orchestrators
                      configure this appropriately. For example our Kubernetes and Docker
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. docs/sts/ldap.md

    - User provides their AD/LDAP username and password to the STS API.
    - MinIO looks up the user's information (specifically the user's Distinguished Name) in the LDAP server.
    - On finding the user's info, MinIO verifies the login credentials with the AD/LDAP server.
    - MinIO optionally queries the AD/LDAP server for a list of groups that the user is a member of.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

        }
    
        private gradleComponentMetadata(String[] deps) {
            def metadata = mavenMetadataFactory.create(componentIdentifier, [])
            //gradle metadata is distinguished from maven POM metadata by explicitly defining variants
            defaultVariant = metadata.addVariant("default", attributes)
            deps.each { name ->
                if (addAllDependenciesAsConstraints()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/ldap.go

    			return searchRes, true, nil
    		}
    	}
    
    	// Not under any configured base DN so return false.
    	return searchRes, false, nil
    }
    
    // Bind - binds to ldap, searches LDAP and returns the distinguished name of the
    // user and the list of groups.
    func (l *Config) Bind(username, password string) (*xldap.DNSearchResult, []string, error) {
    	conn, err := l.LDAP.Connect()
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  5. src/strconv/ftoa.go

    	// and we know that rounding up falls within the bound.
    	var upperdelta uint8
    
    	// Now we can figure out the minimum number of digits required.
    	// Walk along until d has distinguished itself from upper and lower.
    	for ui := 0; ; ui++ {
    		// lower, d, and upper may have the decimal points at different
    		// places. In this case upper is the longest, so we iterate from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    	// distinguished from zero-padding in the top bits,
    	// so the length need not be separately encoded.
    	// Inverting the bytes increases the chance that a
    	// 4-byte encoding will still be ≥ len(text).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    // substrings have matching “length,” the text need not be read at all.
    // The definition of “very short” is that the text bytes must pack into a uint32,
    // and the unsigned encoding e must be ≥ len(text), so that it can be
    // distinguished from a valid length.
    func length_8_32(text []byte, sa []int32, numLMS int) {
    	end := 0 // index of current LMS-substring end (0 indicates final LMS-substring)
    
    	// The encoding of N text bytes into a “length” word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	}
    	klog.V(3).Infof("Triggered API priority and fairness config reloading because priority level %s is undesired and idle", plName)
    	cfgCtlr.configQueue.Add(0)
    }
    
    // computeFlowDistinguisher extracts the flow distinguisher according to the given method
    func computeFlowDistinguisher(rd RequestDigest, method *flowcontrol.FlowDistinguisherMethod) string {
    	if method == nil {
    		return ""
    	}
    	switch method.Type {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/vcs.go

    // The caller should report this error instead of continuing to probe
    // other possible module paths.
    //
    // TODO(golang.org/issue/31730): See if we can invert this. (Return a
    // distinguished error for “repo not found” and treat everything else
    // as terminal.)
    type VCSError struct {
    	Err error
    }
    
    func (e *VCSError) Error() string { return e.Err.Error() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    			return nil, err
    		}
    
    		// The kernel relocation symbol (the mapping start address) can be either
    		// _text or _stext. When profiles are generated by `perf`, which one was used is
    		// distinguished by the mapping name for the kernel image:
    		// '[kernel.kallsyms]_text' or '[kernel.kallsyms]_stext', respectively. If we haven't
    		// been able to parse it from the mapping, we default to _stext.
    		if relocationSymbol == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top