Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,003 for addSdk (0.36 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/api/CheckableComponentSpec.java

        /**
         * Specifies the task responsible for checking this component.
         */
        void setCheckTask(@Nullable Task checkTask);
    
        /**
         * Adds tasks required to check this component. Tasks added this way are subsequently
         * added as dependencies of this component's {@link #getCheckTask() check task}.
         */
        void checkedBy(Object... tasks);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types_test.go

    	protocol, ip string
    	port         int32
    }
    
    func TestHostPortInfo_AddRemove(t *testing.T) {
    	tests := []struct {
    		desc    string
    		added   []hostPortInfoParam
    		removed []hostPortInfoParam
    		length  int
    	}{
    		{
    			desc: "normal add case",
    			added: []hostPortInfoParam{
    				{"TCP", "127.0.0.1", 79},
    				{"UDP", "127.0.0.1", 80},
    				{"TCP", "127.0.0.1", 81},
    				{"TCP", "127.0.0.1", 82},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            source.size() == 1
            source.contains("foo")
        }
    
        def "an element added as both a provider and a realized value is not duplicated"() {
            when:
            source.add("foo")
            source.addPending(provider("foo"))
    
            then:
            source.iterator().collect() == ["foo"]
        }
    
        def "an element added as both a provider and a realized value has the correct order"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/probe_test.go

    	assert.NoError(t, err)
    }
    
    // Probes newly added drivers after prober is running.
    func TestProberAddRemoveDriver(t *testing.T) {
    	// Arrange
    	_, fs, watcher, prober := initTestEnvironment(t)
    	prober.Probe()
    	events, err := prober.Probe()
    	assert.NoError(t, err)
    	assert.Equal(t, 0, len(events))
    
    	// Call probe after a file is added. Should return 1 event.
    
    	// add driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * @return {@code true} if the item was added, or {@code} false if an item with the same name already exists.
         */
        @Override
        boolean add(T e);
    
        /**
         * Adds any of the given objects to the collection that do not have the same name as any existing element.
         *
         * @param c the items to add to the collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            when:
            Task added = container.create([name: 'task', action: action])
    
            then:
            added == task
            1 * task.doFirst(action)
        }
    
        void 'can create task with description'() {
            def task = task("task")
            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
            Task added = container.create([name: 'task', description: "some task"])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/ModelTasksToolingApiCrossVersionTest.groovy

                    }
                }
            '''
        }
    
        def "tasks added using model rule are visible from tooling api"() {
            when:
            GradleProject project = withConnection { it.getModel(GradleProject.class) }
    
            then:
            project.tasks*.name.contains "fromModel"
        }
    
        def "tasks added using model rule can be executed"() {
            when:
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/ObjectConfigurationAction.java

        /**
         * Adds a script to use to configure the target objects. You can call this method multiple times, to use multiple
         * scripts. Scripts and plugins are applied in the order that they are added.
         *
         * @param script The script. Evaluated as per {@link org.gradle.api.Project#file(Object)}. However, note that
         * a URL can also be used, allowing the script to be fetched using HTTP, for example.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. releasenotes/notes/startupProbe.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 32569
    
    releaseNotes:
      - |
        **Added** a `startupProbe` by default for the sidecar. This optimizes startup time and minimizes load throughout the pod lifecycle. See Upgrade Notes for more information.
    
    upgradeNotes:
      - title: StartupProbe added to sidecar by default
        content: |
          The sidecar container now comes with a `startupProbe` enabled by default. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

            @Override
            public Change added(String path, String propertyTitle, FileSystemLocationFingerprint current) {
                return DefaultFileChange.added(path, propertyTitle, current.getType(), current.getNormalizedPath());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top