Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,250 for clean (0.19 sec)

  1. src/cmd/internal/objfile/disasm.go

    	if filepath.Ext(filename) != ".go" {
    		return nil, nil
    	}
    
    	// Clean filenames returned by src.Pos.SymFilename()
    	// or src.PosBase.SymFilename() removing
    	// the leading src.FileSymPrefix.
    	filename = strings.TrimPrefix(filename, src.FileSymPrefix)
    
    	// Expand literal "$GOROOT" rewritten by obj.AbsFile()
    	filename = filepath.Clean(os.ExpandEnv(filename))
    
    	var cf *CachedFile
    	var e *list.Element
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    				VersionedKind:      examplev1.SchemeGroupVersion.WithKind("Pod"),
    				Dirty:              true,
    			},
    		},
    		{
    			Name: "clean, typed",
    			Attrs: &VersionedAttributes{
    				Attributes: attrs(
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "newpod"}},
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "oldpod"}},
    				),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/sync/map.go

    // Store sets the value for a key.
    func (m *Map) Store(key, value any) {
    	_, _ = m.Swap(key, value)
    }
    
    // Clear deletes all the entries, resulting in an empty Map.
    func (m *Map) Clear() {
    	read := m.loadReadOnly()
    	if len(read.m) == 0 && !read.amended {
    		// Avoid allocating a new readOnly when the map is already clear.
    		return
    	}
    
    	m.mu.Lock()
    	defer m.mu.Unlock()
    
    	read = m.loadReadOnly()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_block.go

    		if err != nil {
    			return err
    		}
    	}
    	if err = m.cleanupOrphanDeviceFiles(); err != nil {
    		// V(4) for not so serious error
    		klog.V(4).Infof("Failed to clean up block volume directory %s", err)
    	}
    
    	return nil
    }
    
    // Clean up any orphan files / directories when a block volume is being unstaged.
    // At this point we can be sure that there is no pod using the volume and all
    // files are indeed orphaned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. Makefile

    	$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
    
    hotfix: hotfix-vars clean install ## builds minio binary with hotfix tags
    	@wget -q -c https://github.com/minio/pkger/releases/download/v2.2.9/pkger_2.2.9_linux_amd64.deb
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            expect:
            // Start the action, which leaves a daemon worker process running after execution is complete.
            succeeds("runAction")
            // Now, while the worker is still running, clean the project build files.
            succeeds("clean")
        }
    
        def "can use worker action class that uses external dependencies in #isolationMode"() {
    
            given:
            file('ext-lib/settings.gradle') << "rootProject.name = 'ext'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            given:
            coordinator.stop()
    
            when:
            def result = coordinator.awaitStop()
    
            then:
            stopped
            result == DaemonStopState.Clean
        }
    
        def "runs actions when command is run"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "command")
    
            then:
            1 * onStartCommand.run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

        def "setup"() {
            settingsFile << "rootProject.name = 'test'"
            buildFile << app.pluginScript
            buildFile << app.extraConfiguration
        }
    
        @ToBeFixedForConfigurationCache
        def "clean build with PCH does not fail"() {
            given:
            writeStandardSourceFiles()
    
            when:
            buildFile << preCompiledHeaderComponent()
    
            then:
            args("--info")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    type testSocket struct {
    	path     string
    	endpoint string
    }
    
    // newEndpoint constructs a unique name for a Linux Abstract Socket to be used in a test.
    // This package uses Linux Domain Sockets to remove the need for clean-up of socket files.
    func newEndpoint() *testSocket {
    	p := fmt.Sprintf("@%s.sock", uuid.NewUUID())
    
    	return &testSocket{
    		path:     p,
    		endpoint: fmt.Sprintf("unix:///%s", p),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            then:
            executedAndNotSkipped(taskPath, ':copy1', ':copy2')
            targetFile1.assertIsFile()
            targetFile2.assertIsFile()
        }
    
        @NotYetImplemented
        // We don't clean anything which is not safe to delete
        def "tasks have output directories outside of build directory"() {
            given:
            def sourceFile1 = file('source/source1.txt')
            sourceFile1 << 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top