Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for copiedS (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            p1.exclude p1Exclude
            p2.exclude p2Exclude
    
            when:
            def copied = child.copyRecursive()
    
            then:
            copied.excludeRules.size() == 2
            copied.excludeRules.collect { [group: it.group, module: it.module] }.sort { it.group } == [p1Exclude, p2Exclude]
        }
    
        def "copied configuration has own instance of resolution strategy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * Specify which files (and potentially directories) to copy
    * Specify a destination for the copied files
    
    But this apparent simplicity hides a rich API that allows fine-grained control of which files are copied, where they go, and what happens to them as they are copied — renaming of the files and token substitution of file content are both possibilities, for example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest').assertHasDescendants('sub/a.TXT', 'sub/b.txt', 'sub/c.Txt', 'd.TXT')
        }
    
        def "empty directories are copied by default"() {
            given:
            file('files/emptyDir').createDir()
            file('files/yet/another/veryEmptyDir').createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                     /*leave=*/[&](Node* n) {
                       if (!n->IsSource()) {
                         Node* copied = (*pruned_graph)->CopyNode(n);
                         node_images->emplace(n, copied);
                       }
                     });
    
      // Add all the edges between copied nodes.
      for (auto entry : *node_images) {
        const Node* orig = entry.first;
        Node* image = entry.second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    	s.shuffle(stacklive)
    
    	// Erase any copies we never used.
    	// Also, an unused copy might be the only use of another copy,
    	// so continue erasing until we reach a fixed point.
    	for {
    		progress := false
    		for c, used := range s.copies {
    			if !used && c.Uses == 0 {
    				if s.f.pass.debug > regDebug {
    					fmt.Printf("delete copied value %s\n", c.LongString())
    				}
    				c.resetArgs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // be imported into `graph`. `prefix` is copied and has no lifetime
    // requirements.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetPrefix(
        TF_ImportGraphDefOptions* opts, const char* prefix);
    
    // Set the execution device for nodes in `graph_def`.
    // Only applies to nodes where a device was not already explicitly specified.
    // `device` is copied and has no lifetime requirements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			for _, format := range []Format{DecimalSI, BinarySI, DecimalExponent} {
    				// ensure we are not simply checking pointer equality by creating a new inf.Dec
    				var copied inf.Dec
    				copied.Add(inf.NewDec(0, inf.Scale(0)), got.AsDec())
    				q := NewDecimalQuantity(copied, format)
    				if c := q.Cmp(got); c != 0 {
    					t.Errorf("%v: round trip from decimal back to quantity is not comparable: %d: %#v vs %#v", item.input, c, got, q)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/regexp/testdata/testregex.c

    T("    ; ...	output field 2 if previous failed\n");
    T("    {test ...	skip if failed until }\n");
    T("    }		end of skip\n");
    T("\n");
    T("    : comment		comment copied as output NOTE\n");
    T("    :comment:test	:comment: ignored\n");
    T("    N[OTE] comment	comment copied as output NOTE\n");
    T("    T[EST] comment	comment\n");
    T("\n");
    T("    number		use number for nmatch (20 by default)\n");
    T("\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * set of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
       * @param sets the sets to choose elements from, in the order that the elements chosen from those
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top