Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,023 for addSdk (0.24 sec)

  1. releasenotes/notes/43355.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 11 01:35:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/fix-42675.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 05 06:45:35 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. releasenotes/notes/peer-authn-port-level-pass-through-filter.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 27994
    
    releaseNotes:
      - |
        **Added** support of PeerAuthentication per-port-level configuration on pass through filter chains.
    
    upgradeNotes:
      - title: PeerAuthentication per-port-level configuration will now also apply to pass through filter chains.
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 22:43:51 UTC 2020
    - 1.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. 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)
  8. src/cmd/go/testdata/script/mod_get_extra.txt

    go list -m all
    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    ! stdout '^example.net/c '
    
    
    # TODO(bcmills): This property does not yet hold for modules added for
    # missing packages when the newly-added module matches a wildcard.
    
    cp go.mod.orig go.mod
    
    go get -u example.net/a@v0.1.0 example.net/b/...@v0.1.0
    go list -m all
    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top