Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 272 for facility (0.13 sec)

  1. releasenotes/notes/49896.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 49896
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 15:23:49 UTC 2024
    - 278 bytes
    - Viewed (0)
  2. src/os/exec/lp_linux_test.go

    	if testenv.SyscallIsNotSupported(err) {
    		// Usually this means lack of CAP_SYS_ADMIN, but there might be
    		// other reasons, especially in restricted test environments.
    		t.Skipf("requires ability to mount tmpfs (%v)", err)
    	} else if err != nil {
    		t.Fatalf("mount %s failed: %v", tmp, err)
    	}
    	t.Cleanup(func() {
    		if err := syscall.Unmount(tmp, 0); err != nil {
    			t.Error(err)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. releasenotes/notes/credential-name-support-egress-sidecar.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to set credentialName based secret configuration
         at sidecars for egress TLS traffic when WorkloadSelector is specified in `DestinationRule`,
         provided the sidecar has permission to list secrets in the namespace where it resides.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:56:05 UTC 2022
    - 435 bytes
    - Viewed (0)
  4. pkg/apis/discovery/v1beta1/conversion.go

    			out.Zone = &zone
    			delete(out.DeprecatedTopology, corev1.LabelTopologyZone)
    		}
    
    		// Remove hostname from the topology map ONLY IF it is the same value as
    		// nodeName.  This preserves the (rather odd) ability to have different
    		// values for topology[hostname] and nodename in v1beta1, without showing
    		// duplicate values in v1.
    		if node, ok := in.Topology[corev1.LabelHostname]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 20:02:41 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. releasenotes/notes/50132.yaml

    area: traffic-management
    issue:
      - 48362
    releaseNotes:
      - |
        **Added** the annotation `networking.istio.io/address-type` to allow `istio` class Gateways to use `ClusterIP` for status addresses.
        **Added** the ability to annotate workloads or services with `istio.io/use-waypoint` pointing to Gateways of arbitrary gateway classes.
    
        These changes allow configuring a standard `istio` gateway as a Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-plugins/README.md

    Put plugin integration and cross-version tests into [`:kotlin-dsl-integ-tests`](https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-integ-tests) subproject instead.
    
    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/consumer/build.gradle

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/consumer/build.gradle.kts

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/ConditionalInvalidation.java

     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection;
    
    import java.util.function.Predicate;
    
    /**
     * A feature of a cache-like storage that provides an ability to invalidate the items matching a predicate.
     * @param <T> the type of the stored items.
     */
    public interface ConditionalInvalidation<T> {
        /**
         * Instructs the cache to drop the stored items matching the predicate.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. prow/config/calico.md

    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    crane cp {docker.io,gcr.io/istio-testing}/calico/node:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
Back to top