Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 803 for installAction (0.34 sec)

  1. src/cmd/go/internal/test/test.go

    		addTestVet(b, ptest, vetRunAction, installAction)
    	}
    	if pxtest != nil {
    		addTestVet(b, pxtest, vetRunAction, installAction)
    	}
    
    	if installAction != nil {
    		if runAction != installAction {
    			installAction.Deps = append(installAction.Deps, runAction)
    		}
    		if cleanAction != nil {
    			cleanAction.Deps = append(cleanAction.Deps, installAction)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    		return a
    	})
    
    	if mode == ModeInstall || mode == ModeBuggyInstall {
    		a = b.installAction(a, mode)
    	}
    
    	return a
    }
    
    // installAction returns the action for installing the result of a1.
    func (b *Builder) installAction(a1 *Action, mode BuildMode) *Action {
    	// Because we overwrite the build action with the install action below,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[installation]]
    = Installing Gradle
    
    [[gs:installation]]
    == Gradle Installation
    
    If all you want to do is run an existing Gradle project, then you don't need to install Gradle if the build uses the <<gradle_wrapper#gradle_wrapper_reference,Gradle Wrapper>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. releasenotes/notes/revision-install-create-istiod-service.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
        **Fixed** a bug resulting in broken resource validation when a fresh Istio installation specified a revision. Note that
        this fix applies only when using the `istioctl` installation method, the manual steps from the [canary upgrade documentation](https://istio.io/latest/docs/setup/upgrade/canary/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            createJarFile(jar)
    
            when:
            def clazz = loadClassFromJar(jar)
            def installation = CurrentGradleInstallationLocator.locateViaClass(clazz).getInstallation()
    
            then:
            installation.gradleHome == distDir
            installation.libDirs == [new File(distDir, 'lib'), new File(distDir, 'lib/plugins')]
    
            where:
            jarDirectory << ['lib', 'lib/plugins']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

            then:
            Map<NativeInstallationFixture, HelloWorldApp> installations = apps.collectEntries { name, app ->
                def installation = installation("build/install/${name}Main")
                [installation, app]
            }
            installations.every { installation, app ->
                installation.exec().out == app.englishOutput
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/verify.go

    you specified when you installed Istio. It loops through all the installation
    resources defined in your installation file and reports whether all of them are
    in ready status. It will report failure when any of them are not ready.
    
    If you do not specify an installation it will check for an IstioOperator resource
    and will verify if pods and services defined in it are present.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            executable("app/build/exe/main/debug/App").assertExists()
            sharedLibrary("greeter/build/lib/main/debug/Greeter").assertExists()
            def installation = installation("app/build/install/main/debug")
            installation.exec().out == app.expectedOutput
            installation.assertIncludesLibraries("Greeter")
        }
    
        def "can compile and link against a library specifying target machines"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallation.java

     * limitations under the License.
     */
    
    package org.gradle.internal.installation;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Provides access to the current Gradle installation associated with the runtime.
     */
    @ServiceScope({Scope.Global.class, Scope.Build.class})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. releasenotes/notes/remove-addons-mixer-istioctl.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 23868
      - 23583
    releaseNotes:
      - |
        **Removed** the installation of telemetry addons (Prometheus, Grafana, Zipkin, Jaeger, Kiali) from installation by `istioctl`. See [Reworking our Addon Integrations](/blog/2020/addon-rework/) for more info.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 408 bytes
    - Viewed (0)
Back to top