Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for makefile (0.23 sec)

  1. pkg/bootstrap/instance_test.go

    	if err != nil {
    		return nil, err
    	}
    	cfg := &meshconfig.ProxyConfig{}
    
    	err = prototext.Unmarshal(content, cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	// Exported from makefile or env
    	cfg.ConfigPath = filepath.Join(out, "/bootstrap/", base)
    	cfg.CustomConfigFile = filepath.Join(env.IstioSrc, "/tools/packaging/common/envoy_bootstrap.json")
    	if cfg.StatusPort == 0 {
    		cfg.StatusPort = 15020
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. configure.py

      open(_TF_BAZELRC, 'w').close()
    
    
    def cleanup_makefile():
      """Delete any leftover BUILD files from the Makefile build.
    
      These files could interfere with Bazel parsing.
      """
      makefile_download_dir = os.path.join(_TF_WORKSPACE_ROOT, 'tensorflow',
                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  3. build/common.sh

    # *_OUTPUT_BINPATH - location where final binaries are placed.  If the remote
    #                    is really remote, this is the stuff that has to be copied
    #                    back.
    # OUT_DIR can come in from the Makefile, so honor it.
    readonly LOCAL_OUTPUT_ROOT="${KUBE_ROOT}/${OUT_DIR:-_output}"
    readonly LOCAL_OUTPUT_SUBPATH="${LOCAL_OUTPUT_ROOT}/dockerized"
    readonly LOCAL_OUTPUT_BINPATH="${LOCAL_OUTPUT_SUBPATH}/bin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

           [ "${target}" = "vendor/github.com/onsi/ginkgo/ginkgo" ]; then
          # Aliases that build the ginkgo CLI for hack/ginkgo-e2e.sh.
          # "ginkgo" is the one that is documented in the Makefile. The others
          # are for backwards compatibility.
          echo "github.com/onsi/ginkgo/v2/ginkgo"
          continue
        fi
    
        if [[ "${target}" =~ ^([[:alnum:]]+".")+[[:alnum:]]+"/" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirOriginalPsiProvider.kt

            fakeDeclaration.originalDeclaration = originalDeclaration
        }
    
        override fun recordOriginalKtFile(fakeFile: KtFile, originalFile: KtFile) {
            fakeFile.originalKtFile = originalFile
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

    abstract class AbstractOverriddenDeclarationProviderTest : AbstractAnalysisApiBasedTest() {
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val actual = executeOnPooledThreadInReadAction {
                analyseForTest(mainFile) {
                    val symbol = getCallableSymbol(mainFile, testServices)
                    val allOverriddenSymbols = symbol.getAllOverriddenSymbols().map { renderSignature(it) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/dataFlowInfoProvider/AbstractExitPointSnapshotTest.kt

        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val textRange = testServices.expressionMarkerProvider.getSelectedRange(mainFile)
            val statements = findStatements(mainFile, textRange)
    
            @OptIn(KaAnalysisNonPublicApi::class)
            val actualText = analyseForTest(mainFile) {
                val snapshot = getExitPointSnapshot(statements)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractFileScopeTest.kt

        override fun KaSession.getScope(mainFile: KtFile, testServices: TestServices): KaScope = mainFile.getFileSymbol().getFileScope()
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            super.doTestByMainFile(mainFile, mainModule, testServices)
    
            analyseForTest(mainFile) {
                val fileSymbol = mainFile.getFileSymbol()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/containingDeclarationProvider/AbstractContainingDeclarationProviderByPsiTest.kt

        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val currentPath = mutableListOf<KtDeclaration>()
            val ktClasses = mutableListOf<KtClassOrObject>()
            analyseForTest(mainFile) {
                val expectedFileSymbol = mainFile.getFileSymbol()
                mainFile.accept(object : KtVisitorVoid() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiAnnotationsOnFilesTest.kt

    abstract class AbstractAnalysisApiAnnotationsOnFilesTest : AbstractAnalysisApiBasedTest() {
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val actual = analyseForTest(mainFile) {
                val fileSymbol = mainFile.getFileSymbol()
                TestAnnotationRenderer.renderAnnotations(analysisSession, fileSymbol.annotations)
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top