Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,023 for addSdk (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/incremental/InputFileDetails.java

     */
    package org.gradle.api.tasks.incremental;
    
    import java.io.File;
    
    /**
     * A change to an input file.
     */
    public interface InputFileDetails {
        /**
         * Was the file added?
         * @return true if the file was added since the last execution
         */
        boolean isAdded();
    
        /**
         * Was the file modified?
         * @return if the file was modified
         */
        boolean isModified();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	verifyEvents(t, w, []watch.Event{
    		{Type: watch.Added, Object: makePod(1)},
    		{Type: watch.Added, Object: makePod(2)},
    		{Type: watch.Added, Object: makePod(5)},
    		{Type: watch.Bookmark, Object: &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				ResourceVersion: "10",
    				Annotations:     map[string]string{metav1.InitialEventsAnnotationKey: "true"},
    			},
    		}},
    		{Type: watch.Added, Object: makePod(15)},
    	}, true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
         * @return a new supplier that produces a collection that contains the
         * same elements as this supplier, plus the elements obtained via the given <code>added</code> collector
         */
        CollectionSupplier<T, C> plus(Collector<T> added);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_issue47650.txt

    # successfully resolve it to a pseudo-version derived from a tag on the parent
    # commit.
    cp go.mod go.mod.orig
    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@21535ef346c3
    stderr '^go: added vcs-test.golang.org/git/issue47650.git v0.1.1-0.20210811175200-21535ef346c3$'
    
    # Explicitly requesting that same version should succeed, fetching additional
    # history for the requested commit as needed in order to validate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/listers/cr/v1/expansion_generated.go

    limitations under the License.
    */
    
    // Code generated by lister-gen. DO NOT EDIT.
    
    package v1
    
    // ExampleListerExpansion allows custom methods to be added to
    // ExampleLister.
    type ExampleListerExpansion interface{}
    
    // ExampleNamespaceListerExpansion allows custom methods to be added to
    // ExampleNamespaceLister.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 895 bytes
    - Viewed (0)
  6. releasenotes/notes/47574.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** support for automatically set default network to Ambient workloads if they are added to the Ambient before the network topology is set.
      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_accept.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // We require Linux kernel version 2.6.32. The accept4 system call was
    // added in version 2.6.28, so in general we can use accept4.
    // Unfortunately, for ARM only, accept4 was added in version 2.6.36.
    // Handle that case here, by using a copy of the Accept function that
    // we used in Go 1.17.
    
    //go:build linux && arm
    
    package syscall
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableBiMap.java

       */
      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
        return RegularImmutableBiMap.fromEntries(entryOf(k1, v1), entryOf(k2, v2));
      }
    
      /**
       * Returns an immutable map containing the given entries, in order.
       *
       * @throws IllegalArgumentException if duplicate keys or values are added
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 16:03:42 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/grpc.yaml

          headers:
          - name: my-header
            value: some-value
            type: Exact
        filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-added-header
              value: added-value
            remove: [my-removed-header]
        backendRefs:
        - name: httpbin
          port: 80
      - matches:
        - method:
            type: RegularExpression
            method: "bar"
        backendRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/fix-istioctl-version.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: Wed Nov 16 17:04:03 UTC 2022
    - 988 bytes
    - Viewed (0)
Back to top