Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      //
      // +optional
      optional int32 lendablePercent = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    	return map_ExemptPriorityLevelConfiguration
    }
    
    var map_FlowDistinguisherMethod = map[string]string{
    	"":     "FlowDistinguisherMethod specifies the method of a flow distinguisher.",
    	"type": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.",
    }
    
    func (FlowDistinguisherMethod) SwaggerDoc() map[string]string {
    	return map_FlowDistinguisherMethod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      //
      // +optional
      optional int32 lendablePercent = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      //
      // +optional
      optional int32 lendablePercent = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
      // The supported types are "ByUser" and "ByNamespace".
      // Required.
      optional string type = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/testflag.go

    func (f *outputdirFlag) getAbs() string {
    	if f.abs == "" {
    		return base.Cwd()
    	}
    	return f.abs
    }
    
    // vetFlag implements the special parsing logic for the -vet flag:
    // a comma-separated list, with distinguished values "all" and
    // "off", plus a boolean tracking whether it was set explicitly.
    //
    // "all" is encoded as vetFlag{true, false, nil}, since it will
    // pass no flags to the vet binary, and by default, it runs all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

    import okio.Source
    import okio.buffer
    
    /**
     * Streaming decoder of data encoded following Abstract Syntax Notation One (ASN.1). There are
     * multiple variants of ASN.1, including:
     *
     *  * DER: Distinguished Encoding Rules. This further constrains ASN.1 for deterministic encoding.
     *  * BER: Basic Encoding Rules.
     *
     * This class was implemented according to the [X.690 spec][[x690]], and under the advice of
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/repo.go

    // Lookup returns the module with the given module path,
    // fetched through the given proxy.
    //
    // The distinguished proxy "direct" indicates that the path should be fetched
    // from its origin, and "noproxy" indicates that the patch should be fetched
    // directly only if GONOPROXY matches the given path.
    //
    // For the distinguished proxy "off", Lookup always returns a Repo that returns
    // a non-nil error for every method call.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	case MOV:
    		// The 16-bit and 32-bit forms of MOV Sreg, dst and MOV src, Sreg
    		// cannot be distinguished when src or dst refers to memory, because
    		// Sreg is always a 16-bit value, even when we're doing a 32-bit
    		// instruction. Because the instruction tables distinguished these two,
    		// any operand size prefix has been marked as used (to decide which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top