Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 406 for Builds (0.12 sec)

  1. cmd/kubeadm/app/util/version_test.go

    func TestVersionToTag(t *testing.T) {
    	type T struct {
    		input    string
    		expected string
    	}
    	cases := []T{
    		// NOP
    		{"", ""},
    		// Official releases
    		{"v1.0.0", "v1.0.0"},
    		// CI or custom builds
    		{"v10.1.2-alpha.1.100+0123456789abcdef+SOMETHING", "v10.1.2-alpha.1.100_0123456789abcdef_SOMETHING"},
    		// random and invalid input: should return safe value
    		{"v1,0!0+üñµ", "v1_0_0____"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            // The eclipse workspace contains projects from root and included builds. Check projects from all builds
            // so that models built for included builds do not consider projects from parent builds as external.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

          with:
            build-scan-publish: true
            build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
            build-scan-terms-of-use-agree: "yes"
    
        - name: Run build
          run: ./gradlew build
    ----
    
    https://scans.gradle.com[Gradle Build Scans®] are a great way to view your build results, and provide valuable insights into your build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers.go

    const logPathDelimiter = "_"
    
    // buildContainerLogsPath builds log path for container relative to pod logs directory.
    func buildContainerLogsPath(containerName string, restartCount int) string {
    	return filepath.Join(containerName, fmt.Sprintf("%d.log", restartCount))
    }
    
    // BuildContainerLogsDirectory builds absolute log directory path for a container in pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            }
            runner.forwardOutput()
            runner.withProjectDir(testDirectory)
            result = runner.build()
            output = result.output
    
            then:
            !output.contains("configuration cache")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/27956")
        def "dependencies of builds tested with TestKit in debug mode are instrumented and violations are reported"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. README.md

    *   [Build](https://www.tensorflow.org/install/source) the TensorFlow pip
        package from source.
    
    ## Continuous build status
    
    You can find more community-supported platforms and configurations in the
    [TensorFlow SIG Build community builds table](https://github.com/tensorflow/build#community-supported-tensorflow-builds).
    
    ### Official Builds
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/basic")
                description = "Defining and using a composite build"
                category = "Build organization"
            }
    
            compositeBuildsDeclaredSubstitutions {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/declared-substitution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	}
    
    	// Build consume media types
    	if httpMethod == "PATCH" {
    		supportedTypes := []string{
    			string(types.JSONPatchType),
    			string(types.MergePatchType),
    			string(types.ApplyPatchType),
    		}
    		route.Consumes(supportedTypes...)
    	} else {
    		route.Consumes(runtime.ContentTypeJSON, runtime.ContentTypeYAML)
    	}
    
    	// Build option parameters
    	switch actionVerb {
    	case "get":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

                super(null, BooleanCommandLineOptionConfiguration.create(LONG_OPTION, "Creates a build scan. Gradle will emit a warning if the build scan plugin has not been applied. (https://gradle.com/build-scans)", "Disables the creation of a build scan. For more information about build scans, please visit https://gradle.com/build-scans."));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
        def "projects are configured in parallel when projects use plugins from included builds and project scoped model is queried concurrently"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top