Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installAll (0.23 sec)

  1. cni/pkg/install/install.go

    	return &Installer{
    		cfg:                cfg,
    		kubeconfigFilepath: filepath.Join(cfg.MountedCNINetDir, cfg.KubeconfigFilename),
    		isReady:            isReady,
    	}
    }
    
    func (in *Installer) installAll(ctx context.Context) (sets.String, error) {
    	// Install binaries
    	// Currently we _always_ do this, since the binaries do not live in a shared location
    	// and we harm no one by doing so.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 18:52:24 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  2. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

                    .file(BuildReceipt.buildReceiptFileName)
                    .let(providers::fileContents)
                    .asText
            }
        }
    
    
    fun isRunningInstallTask() =
        listOf("install", "installAll")
            .flatMap { listOf(":distributions-full:$it", "distributions-full:$it", it) }
            .any(gradle.startParameter.taskNames::contains)
    
    fun isRunningDocsTestTask() =
        setOf(":docs:docsTest", "docs:docsTest")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.9K bytes
    - Viewed (0)
Back to top