Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 181 for qualified (0.19 sec)

  1. common-protos/k8s.io/api/certificates/v1/generated.proto

      // When serialized as JSON or YAML, the data is additionally base64-encoded.
      // +listType=atomic
      optional bytes request = 1;
    
      // signerName indicates the requested signer, and is a qualified name.
      //
      // List/watch requests for CertificateSigningRequests can filter on this field using a "spec.signerName=NAME" fieldSelector.
      //
      // Well-known Kubernetes signers are:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // the related backend services. Incoming requests are first evaluated for a host
    // match, then routed to the backend associated with the matching IngressRuleValue.
    message IngressRule {
      // host is the fully qualified domain name of a network host, as defined by RFC 3986.
      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </pre>
    
    <h3 id="Qualified_identifiers">Qualified identifiers</h3>
    
    <p>
    A qualified identifier is an identifier qualified with a package name prefix.
    Both the package name and the identifier must not be
    <a href="#Blank_identifier">blank</a>.
    </p>
    
    <pre class="ebnf">
    QualifiedIdent = PackageName "." identifier .
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

    // the related backend services. Incoming requests are first evaluated for a host
    // match, then routed to the backend associated with the matching IngressRuleValue.
    message IngressRule {
      // host is the fully qualified domain name of a network host, as defined by RFC 3986.
      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  5. cmd/api-response.go

    // returns "https" if the tls boolean is true, "http" otherwise.
    func getURLScheme(tls bool) string {
    	if tls {
    		return httpsScheme
    	}
    	return httpScheme
    }
    
    // getObjectLocation gets the fully qualified URL of an object.
    func getObjectLocation(r *http.Request, domains []string, bucket, object string) string {
    	// unit tests do not have host set.
    	if r.Host == "" {
    		return path.Clean(r.URL.Path)
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 33.3K bytes
    - Viewed (2)
  6. doc/go_spec.html

    cannot be <a href="#Instantiations">instantiated</a>; any attempt will lead
    to an error at the instantiation site.
    </p>
    
    <h3 id="Qualified_identifiers">Qualified identifiers</h3>
    
    <p>
    A <i>qualified identifier</i> is an identifier qualified with a package name prefix.
    Both the package name and the identifier must not be
    <a href="#Blank_identifier">blank</a>.
    </p>
    
    <pre class="ebnf">
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Files.java

       * similar to the {@code basename} unix command. The result does not include the '{@code .}'.
       *
       * @param file The name of the file to trim the extension from. This can be either a fully
       *     qualified file name (including a path) or just a file name.
       * @return The file name without its path or extension.
       * @since 14.0
       */
      public static String getNameWithoutExtension(String file) {
        checkNotNull(file);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>implementation</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                The Mojo's fully-qualified class name (or script path in the case of non-Java Mojos).
              </description>
            </field>
            <field>
              <name>language</name>
              <version>1.0.0+</version>
              <type>String</type>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

            ) return null
            return unaryExpression
        }
    
        /**
         * When resolving selector expression of a [KtDotQualifiedExpression], we instead resolve the containing qualified expression. This way
         * the corresponding FIR element is the `FirFunctionCall` or `FirPropertyAccessExpression`, etc.
         */
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  10. ChangeLog.md

    - [`KTIJ-26103`](https://youtrack.jetbrains.com/issue/KTIJ-26103) K2 IDE: False positive in redundant qualifier inspection
    - [`KTIJ-26024`](https://youtrack.jetbrains.com/issue/KTIJ-26024) K2 IDE: False positive "Redundant qualifier" inspection on a nested class which extends its outer class
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
Back to top