Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for toclevels (0.2 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("icons", "font");
                attributes.put("source-highlighter", "prettify");
                attributes.put("toc", "auto");
                attributes.put("toclevels", 1);
                attributes.put("toc-title", "Contents");
                attributes.put("groovyDslPath", "../dsl");
                attributes.put("javadocPath", "../javadoc");
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  2. ci/official/utilities/setup.sh

    set -euxo pipefail -o history -o allexport
    
    # Set TFCI_GIT_DIR, the root directory for all commands, to two directories
    # above the location of this file (setup.sh). We could also use "git rev-parse
    # --show-toplevel", but that wouldn't work for non-git repos (like if someone
    # downloaded TF as a zip archive).
    export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../)
    cd "$TFCI_GIT_DIR"
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jan 26 00:33:34 GMT 2024
    - 5.2K bytes
    - Viewed (1)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            if (fqNameString != null) {
                val fqNameUnsafe = FqNameUnsafe(fqNameString)
                if (fqNameUnsafe.isSafe) {
                    return ClassId.topLevel(fqNameUnsafe.toSafe())
                }
            }
    
            return null
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
        }
    
        private fun KtAnalysisSession.getExtensionCallableSymbolsByShortName(name: Name, contextElement: KtElement): List<KtCallableSymbol> {
            return getSymbolsFromScopes(FqName.topLevel(name), contextElement)
                .filterIsInstance<KtCallableSymbol>()
                .filter { it.isExtension }
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            else -> null
        }
    
    internal val ClassifierDescriptor.maybeLocalClassId: ClassId
        get() = classId ?: ClassId(containingPackage() ?: FqName.ROOT, FqName.topLevel(this.name), isLocal = true)
    
    internal fun ClassDescriptor.getSupertypesWithAny(): Collection<KotlinType> {
        val supertypes = typeConstructor.supertypes
        if (isInterfaceLike) {
            return supertypes
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        public HtmlResponse getRedirectResponseToRoot(final HtmlResponse response) {
            return response;
        }
    
        public void setLogLevel(final String level) {
            final Level logLevel = Level.toLevel(level, Level.WARN);
            System.setProperty(Constants.FESS_LOG_LEVEL, logLevel.toString());
            split(ComponentUtil.getFessConfig().getLoggingAppPackages(), ",")
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (1)
  7. Makefile.core.mk

      ifneq ($(GOOS_LOCAL),"linux")
        BUILD_DEPS += build-linux
      endif
    endif
    
    export ARTIFACTS ?= $(TARGET_OUT)
    export JUNIT_OUT ?= $(ARTIFACTS)/junit.xml
    export REPO_ROOT := $(shell git rev-parse --show-toplevel)
    
    # Make directories needed by the build system
    $(shell mkdir -p $(TARGET_OUT_LINUX))
    $(shell mkdir -p $(TARGET_OUT_LINUX)/logs)
    $(shell mkdir -p $(dir $(JUNIT_OUT)))
    
    # Need separate target for init:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            if (fqName.isInNewImports(additionalImports)) return true
    
            val resolvedSymbols = with(analysisSession) {
                val shortFqName = FqName.topLevel(fqName.shortName())
                val owner = kDocName.getContainingDoc().owner
    
                val contextElement = owner ?: kDocName.containingKtFile
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  9. .bazelrc

    build:rbe_base --remote_timeout=3600
    build:rbe_base --spawn_strategy=remote,worker,standalone,local
    # Attempt to minimize the amount of data transfer between bazel and the remote
    # workers:
    build:rbe_base --remote_download_toplevel
    test:rbe_base --test_env=USER=anon
    
    # TODO(kanglan): Check if we want to merge rbe_linux into rbe_linux_cpu.
    build:rbe_linux --config=rbe_base
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

            DslScopeViolationImpl(
                firSymbolBuilder.buildSymbol(firDiagnostic.a),
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.TOPLEVEL_TYPEALIASES_ONLY) { firDiagnostic ->
            ToplevelTypealiasesOnlyImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
Back to top