Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,314 for copiedS (0.24 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            _ * globalDependencySubstitutions.ruleAction >> Actions.doNothing()
    
            then: //user rules follow:
            1 * substitutionAction.execute(details)
            0 * details._
        }
    
        def "copied instance does not share state"() {
            when:
            def copy = strategy.copy()
    
            then:
            1 * cachePolicy.copy() >> Mock(DefaultCachePolicy)
            !copy.is(strategy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/memmove_arm64.s

    // srcend R4
    // dstend R5
    // data   R6-R17
    // tmp1   R14
    
    // Copies are split into 3 main cases: small copies of up to 32 bytes, medium
    // copies of up to 128 bytes, and large copies. The overhead of the overlap
    // check is negligible since it is only required for large copies.
    //
    // Large copies use a software pipelined loop processing 64 bytes per iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. src/net/sendfile_test.go

    		// in expectSendfile.
    		_, err = io.CopyN(conn, r, 1)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		// Signal the main goroutine that we've copied the byte.
    		close(copied)
    	}()
    
    	wg.Add(1)
    	go func() {
    		// Write 1 byte to the write end of the pipe.
    		defer wg.Done()
    		_, err := w.Write([]byte{'a'})
    		if err != nil {
    			t.Error(err)
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                def verifyDep(original, copied) {
                    // Dependency
                    assert original.group == copied.group
                    assert original.name == copied.name
                    assert original.version == copied.version
                    assert original.reason == copied.reason
    
                    // ModuleDependency
                    assert original.excludeRules == copied.excludeRules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. src/internal/fuzz/pcg.go

    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    const multiplier uint64 = 6364136223846793005
    
    // pcgRand is a PRNG. It should not be copied or shared. No Rand methods are
    // concurrency safe.
    type pcgRand struct {
    	noCopy noCopy // help avoid mistakes: ask vet to ensure that we don't make a copy
    	state  uint64
    	inc    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/copy_windows.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"os/exec"
    )
    
    // CopyDir copies the content of a folder
    func CopyDir(src string, dst string) ([]byte, error) {
    	// /E Copies directories and subdirectories, including empty ones.
    	// /H Copies hidden and system files also.
    	return exec.Command("xcopy", "/E", "/H", src, dst).CombinedOutput()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 03 02:45:12 UTC 2023
    - 926 bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * replace string should use the '$1' syntax to refer to capture groups in the source regular expression.  Files
         * that do not match the source regular expression will be copied with the original name.
         *
         * <p> Example:
         * <pre>
         * rename '(.*)_OEM_BLUE_(.*)', '$1$2'
         * </pre>
         * would map the file 'style_OEM_BLUE_.css' to 'style.css'
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/managedfields.go

    	a, err := meta.Accessor(o)
    	if err != nil {
    		// The object is not a `metav1.Object`, ignore it.
    		return o
    	}
    	a.SetManagedFields(nil)
    	return o
    }
    
    // PrintObj copies the object and omits the managed fields from the copied object before printing it.
    func (p *OmitManagedFieldsPrinter) PrintObj(obj runtime.Object, w io.Writer) error {
    	if obj == nil {
    		return p.Delegate.PrintObj(obj, w)
    	}
    	if meta.IsListType(obj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 16 14:52:03 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            assertEquals("maven-core", clonedProject.getArtifactId());
            Map<?, ?> clonedMap = clonedProject.getManagedVersionMap();
            assertNotNull(clonedMap, "ManagedVersionMap not copied");
            assertTrue(clonedMap.isEmpty(), "ManagedVersionMap is not empty");
        }
    
        @Test
        void testCloneWithDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            source.debugOptions.port.set(1234)
    
            when:
            source.copyTo(target)
    
            then: "Target should have the debugOptions copied from source"
            target.debugOptions.host.get() == "*"
            target.debugOptions.port.get() == 1234
        }
    
        def "#propDescr is immutable system property"() {
            when:
            def opts = createOpts()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top