Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for distinguish (0.16 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    }
    
    // FlowDistinguisherMethodType is the type of flow distinguisher method
    type FlowDistinguisherMethodType string
    
    // These are valid flow-distinguisher methods.
    const (
    	// FlowDistinguisherMethodByUserType specifies that the flow distinguisher is the username in the request.
    	// This type is used to provide some insulation between users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

                assert result == [expected] as Set
            } catch (VariantSelectionException e) {
                if (expected == null) {
                    def distinguisher = queryAttributes.containsKey('flavor') ? 'extra' : 'flavor'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. 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)
  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. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // successors for each op, based on side effects on known and unknown resources.
    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    // If there are nested regions, each region is handled separately, and control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/internal/obj/objfile.go

    	w.Bytes(w.tmpHash[:])
    }
    
    // contentHashSection returns a mnemonic for s's section.
    // The goal is to prevent content-addressability from moving symbols between sections.
    // contentHashSection only distinguishes between sets of sections for which this matters.
    // Allowing flexibility increases the effectiveness of content-addressability.
    // But in some cases, such as doing addressing based on a base symbol,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// InlMark marks the start of an inlined function body. Its AuxInt field
    	// distinguishes which entry in the local inline tree it is marking.
    	{name: "InlMark", argLength: 1, aux: "Int32", typ: "Void"}, // arg[0]=mem, returns void.
    
    	// Ops for breaking 64-bit operations on 32-bit architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    func (st ServiceTarget) NamespacedName() types.NamespacedName {
    	return st.Service.NamespacedName()
    }
    
    type (
    	ServicePort = *Port
    	// ServiceInstancePort defines a port that has both a port and targetPort (which distinguishes it from model.Port)
    	// Note: ServiceInstancePort only makes sense in the context of a specific ServiceInstance, because TargetPort depends on a specific instance.
    	ServiceInstancePort struct {
    		ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top