Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for designation (0.14 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. 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)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    SessionHolderImpl(firSession, scopeSession)
                }
    
                val designation = ContextCollector.computeDesignation(firFile, targetElement)
    
                val contextProvider = ContextCollector.process(
                    firFile,
                    sessionHolder,
                    designation,
                    shouldCollectBodyContext = false, // we only query SELF context
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

          assert(!name.empty() && "expected non-empty name");
          mlir::LegalizeNodeName(name);
          auto tensor_id = ParseTensorName(name);
          TF_RET_CHECK(tensor_id.index() == 0)
              << "input port designation not supported";
          // Only assign user of argument the input name if the main graph did not
          // have its _Arg nodes lifted into the functions arguments.
          // Ensure name does not get reused.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

          assert(!name.empty() && "expected non-empty name");
          mlir::LegalizeNodeName(name);
          auto tensor_id = ParseTensorName(name);
          TF_RET_CHECK(tensor_id.index() == 0)
              << "input port designation not supported";
          // Only assign user of argument the input name if the main graph did not
          // have its _Arg nodes lifted into the functions arguments.
          // Ensure name does not get reused.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname.yaml

    Leonardo Sarra <******@****.***> 1718349751 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 217 bytes
    - Viewed (0)
Back to top