Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,313 for clen (0.22 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    )
    class NativeParallelPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with parallel workers"() {
            given:
            runner.testGroup = 'parallel builds'
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
                displayName("serial")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/test/fakes/imageregistry/Makefile

    .PHONY: build build_and_push clean all
    
    MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
    MD_PATH := $(dir $(MKFILE_PATH))
    HUB ?= gcr.io/istio-testing
    IMG := $(HUB)/fake-registry
    BIN_NAME := main
    
    # NOTE: TAG should be updated whenever changes are made in this directory
    # This should also be updated in dependent components
    TAG := 1.3
    
    all: build_and_push clean
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/LifecycleBasePluginTest.groovy

        public void createsTasksAndAppliesMappings() {
            when:
            project.pluginManager.apply(LifecycleBasePlugin)
    
            then:
            def clean = project.tasks[CLEAN_TASK_NAME]
            clean instanceOf(Delete)
            clean dependsOn()
            clean.group == BUILD_GROUP
            clean.targetFiles.files == [project.buildDir] as Set
    
            and:
            def assemble = project.tasks[ASSEMBLE_TASK_NAME]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	_        uint32
    }
    
    type RawSockaddrUnix struct {
    	Family uint16
    	Path   [108]int8
    }
    
    type RawSockaddrDatalink struct {
    	Family uint16
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [244]int8
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [236]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        }
    
        def "clean on Java project with a single source file and no dependencies"() {
            given:
            buildWithSingleSourceFile()
    
            def buildDir = file("build")
            buildDir.mkdirs()
    
            expect:
            configurationCacheRun "clean"
            assertStateStored()
            result.assertTasksExecuted(":clean")
            !buildDir.exists()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.dot

      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugSwift [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
      compileTestSwift -> compileDebugSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileTestSwift clean}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/version/version_test.go

    			`Version: 1.0.0
    GitRevision: 3a136c90ec5e308f236e0d7ebb5c4c5e405217f4
    GolangVersion: go1.10.1
    BuildStatus: Clean
    GitTag: tag
    `,
    			false,
    			BuildInfo{
    				Version:       "1.0.0",
    				GitRevision:   "3a136c90ec5e308f236e0d7ebb5c4c5e405217f4",
    				GolangVersion: "go1.10.1",
    				BuildStatus:   "Clean",
    				GitTag:        "tag",
    			},
    		},
    		{
    			"Legacy input 1",
    			`Version: 1.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                        targets = ["clean", "package", "-Dmaven.test.skip=true", "-T", "4"]
                      }
                      bazel {
                        targets = ["build", "//..."]
                      }
                    }
    
                    cleanAssemble {
                      tasks = ["clean", "assemble"]
                       maven {
                        targets = ["clean", "package", "-Dmaven.test.skip=true", "-T", "4"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.dot

      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      check -> assemble -> assembleDebug -> assembleRelease [style=invis]
      {rank=same check assemble assembleDebug assembleRelease}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top