Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,250 for clean (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    For example, the following will
    execute `clean` and `build` along with their dependencies:
    
    ----
    $ gradle clean build
    ----
    
    However, the intention implied in the command line order is that `clean` should run first and then `build`. It would be incorrect to execute `clean` _after_ `build`, even if doing so would cause the build to execute faster since `clean` would remove what `build` created.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. pkg/kubelet/logs/container_log_manager.go

    //
    // Implementation is thread-safe.
    type ContainerLogManager interface {
    	// TODO(random-liu): Add RotateLogs function and call it under disk pressure.
    	// Start container log manager.
    	Start()
    	// Clean removes all logs of specified container.
    	Clean(ctx context.Context, containerID string) error
    }
    
    // LogRotatePolicy is a policy for container log rotation. The policy applies to all
    // containers managed by kubelet.
    type LogRotatePolicy struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		},
    	})
    
    	tc.jLister = jobInformer.Lister()
    	tc.jListerSynced = jobInformer.Informer().HasSynced
    
    	tc.clock = clock.RealClock{}
    
    	return tc
    }
    
    // Run starts the workers to clean up Jobs.
    func (tc *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer tc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    include::sample[dir="snippets/workerApi/md5CustomTask/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/workerApi/md5CustomTask/groovy",files="build.gradle[]"]
    ====
    <1> Apply the `base` plugin so that you'll have a `clean` task to use to remove the output.
    <2> MD5 hash files will be written to `build/md5`.
    <3> This task will generate MD5 hash files for every file in the `src` directory.
    
    You will need some source to generate MD5 hashes from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    :classes
    :jar
    :assemble
    
    BUILD SUCCESSFUL
    ----
    
    We see the directory used by the local build cache in the output. Apart from that the build was the same as without the build cache.
    Let's clean and run the build again.
    
    ----
    > gradle clean
    :clean
    
    BUILD SUCCESSFUL
    ----
    
    ----
    > gradle --build-cache assemble
    :compileJava FROM-CACHE
    :processResources
    :classes
    :jar
    :assemble
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.h

      // Callbacks for creating/destroying SP_Device.
      void (*create_device)(const SP_Platform* platform,
                            SE_CreateDeviceParams* params, TF_Status* status);
    
      // Clean up fields inside SP_Device that were allocated
      // by the plugin. `device` itself should not be deleted here.
      void (*destroy_device)(const SP_Platform* platform, SP_Device* device);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cfg/cfg.go

    		// to find the GOROOT/go.env file. initEnvCache
    		// has passed in the setting from the user go/env file.
    		env = os.Getenv("GOROOT")
    	}
    	if env != "" {
    		return filepath.Clean(env)
    	}
    	def := ""
    	if r := runtime.GOROOT(); r != "" {
    		def = filepath.Clean(r)
    	}
    	if runtime.Compiler == "gccgo" {
    		// gccgo has no real GOROOT, and it certainly doesn't
    		// depend on the executable's location.
    		return def
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                ':hello:_xcode___Hello_Release')
        }
    
        @ToBeFixedForConfigurationCache
        @Ignore('The project contains no build configurations - it may have been damaged')
        def "can clean xcode project with transitive dependencies"() {
            def app = new SwiftAppWithLibraries()
    
            given:
            settingsFile.text =  """
                include 'app', 'log', 'hello'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. src/runtime/mspanset.go

    		throw("attempt to clear non-empty span set")
    	}
    	top := head / spanSetBlockEntries
    	if uintptr(top) < b.spineLen.Load() {
    		// If the head catches up to the tail and the set is empty,
    		// we may not clean up the block containing the head and tail
    		// since it may be pushed into again. In order to avoid leaking
    		// memory since we're going to reset the head and tail, clean
    		// up such a block now, if it exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            }
    
            fun assertCorrectParameters(subProjectName: String, functionalTests: List<BaseGradleBuildType>) {
                functionalTests.forEach { assertTrue(it.getGradleTasks().startsWith("clean $subProjectName")) }
                if (functionalTests.size == 1) {
                    assertFalse(functionalTests[0].getGradleParams().contains("-PincludeTestClasses"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top