Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,001 for pgversion (0.1 sec)

  1. manifests/charts/gateway/files/profile-compatibility-version-1.22.yaml

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/files/profile-compatibility-version-1.20.yaml

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    pilot:
      env:
        # 1.21 behavioral changes
        ENABLE_EXTERNAL_NAME_ALIAS: "false"
        PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING: "true"
        VERIFY_CERTIFICATE_AT_CLIENT: "false"
        ENABLE_AUTO_SNI: "false"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 753 bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/missing-plugin-dependency-version.xml

      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <groupId>test</groupId>
                <artifactId>a</artifactId>
                <!-- version missing -->
              </dependency>
            </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 27 11:09:54 UTC 2010
    - 1.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/files/profile-compatibility-version-1.22.yaml

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/files/profile-compatibility-version-1.21.yaml

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    pilot:
      env:
        # 1.22 behavioral changes
        ENABLE_ENHANCED_RESOURCE_SCOPING: "false"
        ENABLE_RESOLUTION_NONE_TARGET_PORT: "false"
    meshConfig:
      # 1.22 behavioral changes
      proxyMetadata:
        ISTIO_DELTA_XDS: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 529 bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/files/profile-compatibility-version-1.22.yaml

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    meshConfig:
      # 1.22 behavioral changes
      defaultConfig:
        proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 342 bytes
    - Viewed (0)
  7. platforms/software/plugins-version-catalog/src/main/resources/META-INF/gradle-plugins/org.gradle.version-catalog.properties

    #
    # Copyright 2018 the original author or authors.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #      http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 674 bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/missing-report-version-pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>foo</artifactId>
      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-from-pluginManagement-plugin</artifactId>
              <version>1.0</version>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 20 21:10:31 UTC 2013
    - 1.6K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-release.xml

      <parent>
        <groupId>com.example.group</groupId>
        <artifactId>com-parent</artifactId>
        <version>RELEASE</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of RELEASE
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/bad-plugin-dependency-version.xml

      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <groupId>test</groupId>
                <artifactId>a</artifactId>
                <version>0.1</version>
              </dependency>
              <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 27 11:09:54 UTC 2010
    - 1.4K bytes
    - Viewed (0)
Back to top