Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 477 for designation (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

                if (typeParametersLeft <= 0) return false
                return index == designation.lastIndex || designation[index].isInner || designation[index + 1].isInner
            }
    
            val result = mutableListOf<KaClassTypeQualifier.KaResolvedClassTypeQualifier>()
            designation.forEachIndexed { index, currentClass ->
                val typeParameters = if (needToRenderTypeParameters(index)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

            designation: PluginDesignation,
        ): RawPluginDescriptor = pluginDescriptorsCache.computeIfAbsent(designation) {
            val descriptor = RawPluginDescriptor()
            PluginXmlPathResolver.DEFAULT_PATH_RESOLVER.resolvePath(
                readContext = ReadContext,
                dataLoader = ResourceDataLoader(designation.classLoader),
                relativePath = designation.relativePath,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tools/certs/README.md

    `$NAMESPACE-certs` | Both | Generates intermediate certificates and sign certificates for a virtual machine connected to the namespace `$NAMESPACE` using serviceAccount `$SERVICE_ACCOUNT`...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure_helper_test.go

    func (c *ManifestTestCase) mustCreateManifestDstDir() {
    	p := filepath.Join(filepath.Join(c.kubeHome, "etc", "kubernetes", "manifests"))
    	if err := os.MkdirAll(p, os.ModePerm); err != nil {
    		c.t.Fatalf("Failed to create designation folder for kube-apiserver.manifest: %v", err)
    	}
    }
    
    func (c *ManifestTestCase) mustInvokeFunc(env interface{}, scriptNames []string, targetTemplate string, templates ...string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        private static Pattern patternForHeader(String header) {
            String pattern = "(?ms)";
            pattern += header;
            // Capture all output, lazily up until two new lines and an END_OF_TASK designation
            pattern += "([\\s\\S]*?(?=[^\\n]*?" + END_OF_GROUPED_OUTPUT + "))";
            return Pattern.compile(pattern);
        }
    
        private final LogContent originalOutput;
        private final String strippedOutput;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/Destination.java

     *
     * @since 6.0
     */
    public enum Destination implements Serializable {
    
        StdOut(0),
        StdErr(1);
    
        private final int code;
    
         Destination(int code) {
            this.code = code;
        }
    
        public int getCode() {
            return code;
        }
    
        public static Destination fromCode(int code) {
            for (Destination d : Destination.values()) {
                if (d.code == code) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. internal/bucket/replication/destination.go

    )
    
    // DestinationARNPrefix - destination ARN prefix as per AWS S3 specification.
    const DestinationARNPrefix = "arn:aws:s3:::"
    
    // DestinationARNMinIOPrefix - destination ARN prefix for MinIO.
    const DestinationARNMinIOPrefix = "arn:minio:replication:"
    
    // Destination - destination in ReplicationConfiguration.
    type Destination struct {
    	XMLName      xml.Name `xml:"Destination" json:"Destination"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-mutual-destination.yaml

    # No caCertificates when mode is mutual at destination level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: MUTUAL
          clientCertificate: /etc/certs/myclientcert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 348 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination.yaml

    # No caCertificates when mode is simple at destination level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          clientCertificate: /etc/certs/myclientcert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 347 bytes
    - Viewed (0)
  10. releasenotes/notes/destination-rule-proxyprotocol

    deterclosed <******@****.***> 1711183043 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 329 bytes
    - Viewed (0)
Back to top