Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 921 for addSdk (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `build` - Task (lifecycle)::
    Depends on: `check`, `assemble`
    ::
    Aggregate tasks that perform a full build of the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `clean` - Delete::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	// Act
    	dsw.AddNode(nodeName)
    
    	// Assert
    	nodeExists := dsw.NodeExists(nodeName)
    	if !nodeExists {
    		t.Fatalf("Added node %q does not exist, it should.", nodeName)
    	}
    
    	// Act
    	dsw.AddNode(nodeName)
    
    	// Assert
    	nodeExists = dsw.NodeExists(nodeName)
    	if !nodeExists {
    		t.Fatalf("Added node %q does not exist, it should.", nodeName)
    	}
    
    	volumesToAttach := dsw.GetVolumesToAttach()
    	if len(volumesToAttach) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

        /**
         * The source sets to be added.
         * <p>
         * See {@link EclipseClasspath} for an example.
         */
        public Iterable<SourceSet> getSourceSets() {
            return sourceSets;
        }
    
        public void setSourceSets(Iterable<SourceSet> sourceSets) {
            this.sourceSets = sourceSets;
        }
    
        /**
         * The configurations whose files are to be added as classpath entries.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Aggregate task that performs verification tasks, such as running the tests.
    Some plugins add their own verification task to `check`.
     For example, the <<xctest_plugin.adoc#xctest_plugin,XCTest Plugin>> attaches a task to this lifecycle task to run tests.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            nonJarLibEntries.isEmpty()
        }
    
        def "no additional jars are added to the distribution"() {
            when:
            def jarLibEntries = libZipEntries.findAll { it.name.endsWith(".jar") }
    
            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            Map<String, Integer> added = new LinkedHashMap<String, Integer>();
    
            for (Integer value : values) {
                String key = String.format("key_%d", value);
                cache.put(key, value);
                added.put(String.format("key_%d", value), value);
            }
    
            for (Map.Entry<String, Integer> entry : added.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

     * multimap.
     *
     * <p>The collections returned by {@code keySet}, {@code keys}, and {@code asMap} iterate through
     * the keys in the order they were first added to the multimap. Similarly, {@code get}, {@code
     * removeAll}, and {@code replaceValues} return collections that iterate through the values in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/LinkedHashMultimap.java

     * multimap.
     *
     * <p>The collections returned by {@code keySet}, {@code keys}, and {@code asMap} iterate through
     * the keys in the order they were first added to the multimap. Similarly, {@code get}, {@code
     * removeAll}, and {@code replaceValues} return collections that iterate through the values in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    * When a new dependency is added to the graph, perform conflict resolution to determine which version should be added to the graph.
    * When a specific dependency, that is a module with a version, is identified as part of the graph, retrieve its metadata so that its dependencies can be added in turn.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

            }
        }
    
        private String getPropertyPrefix() {
            simpleClassName.uncapitalize()
        }
    
        void publishDummyPluginNow() {
            if (added) {
                return
            }
            added = true
            def builder = new PluginBuilder(projectDir.file('plugin-' + id))
            builder.packageName = packageName
            builder.addPluginSource(id, simpleClassName, """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top