Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,365 for replaced (0.15 sec)

  1. internal/lock/lock_windows_test.go

    	for _, test := range []struct{ in, want string }{
    		// Short; unchanged:
    		{`C:\short.txt`, `C:\short.txt`},
    		{`C:\`, `C:\`},
    		{`C:`, `C:`},
    		// The "long" substring is replaced by a looooooong
    		// string which triggers the rewriting. Except in the
    		// cases below where it doesn't.
    		{`C:\long\foo.txt`, `\\?\C:\long\foo.txt`},
    		{`C:/long/foo.txt`, `\\?\C:\long\foo.txt`},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/WtpComponentTest.groovy

            then:
            component.deployName == constructorDeployName
            component.contextPath == constructorContextPath
            // dependent modules are replaced, other entries are added up
            component.wbModuleEntries as Set == [
                    new WbDependentModule('foo-1.2.3.jar', '/WEB-INF/lib', "module:/classpath/foo-1.2.3.jar"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor.txt

    [!short] go build
    [!short] ! go build -mod=vendor
    
    # Without vendoring, 'go list' should report the replacement directory for
    # a package in a replaced module.
    go list -f {{.Dir}} x
    stdout 'src[\\/]x'
    
    # 'go mod vendor' should copy all replaced modules to the vendor directory.
    go mod vendor -v
    stderr '^# x v1.0.0 => ./x'
    stderr '^x'
    stderr '^# y v1.0.0 => ./y'
    stderr '^y'
    stderr '^# z v1.0.0 => ./z'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def replaced1 = Stub(FileCollectionInternal)
            def supplier = Stub(Supplier)
    
            collection.from(collection1, collection2)
    
            when:
            def replaced = collection.replace(collection1, supplier)
    
            then:
            replaced != collection
            replaced.sourceCollections == [replaced1, collection2]
    
            1 * collection1.replace(collection1, supplier) >> replaced1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    2. Run the `my-app` application, including the `my-utils` build.
    
    ```
    cd my-app
    gradle --include-build ../my-utils run
    ```
    
    Using _dependency substitution_, the module dependencies on the util libraries are replaced by project dependencies on `my-utils`.
    
    == Converting `my-app` to a composite build
    
    It's possible to make the above arrangement persistent, by making `my-app` a composite build that includes `my-utils`.
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * there is a class-level lower bound for both versions.
     *
     * In addition, in version 6.6 the deprecated {@code DependencySubstitutions#with(ComponentSelector)} method
     * was removed, to be replaced by {@code #using(ComponentSelector)} so there are 2 versions of tests
     * present using either of those methods - pre and post Gradle 6.6.  And when the TAPI or Gradle versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/debug/pe/section.go

    	if err != nil {
    		return nil, fmt.Errorf("fail to read section relocations: %v", err)
    	}
    	return relocs, nil
    }
    
    // SectionHeader is similar to [SectionHeader32] with Name
    // field replaced by Go string.
    type SectionHeader struct {
    	Name                 string
    	VirtualSize          uint32
    	VirtualAddress       uint32
    	Size                 uint32
    	Offset               uint32
    	PointerToRelocations uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_rewrite_util.cc

          old_parallel_execute->getLoc(),
          num_moved_children + num_cores_per_replica, concatenated_output_types);
    
      // `cluster_idx` is the index of the child with the `ClusterFuncOp`, which
      // will be replaced.
      int cluster_idx = -1;
      for (size_t child_idx = 0;
           child_idx < old_parallel_execute.getRegions().size(); ++child_idx) {
        auto& block = old_parallel_execute.GetRegionBlockWithIndex(child_idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                    File platformSdkPath = sdkPlatformPathLocator.find();
                    File frameworkDir = new File(platformSdkPath, "Developer/Library/Frameworks");
                    // Since Xcode 11/12, the XCTest framework is being replaced by a different library that's available in the sdk root
                    File extraInclude = new File(platformSdkPath, "Developer/usr/lib");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top