Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 541 for alias2 (0.11 sec)

  1. pilot/pkg/config/kube/gateway/testdata/alias.yaml

        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
      annotations:
        gateway.istio.io/alias-for: third-party-gateway
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. cluster/gce/upgrade-aliases.sh

    detect-master
    
    k8s_node_routes_count=$(get-k8s-node-routes-count)
    if [[ "${k8s_node_routes_count}" -eq 0 ]]; then
      echo "No k8s node routes found and IP alias should already be enabled. Exiting..."
      exit 0
    fi
    echo "Found ${k8s_node_routes_count} K8s node routes. Proceeding to upgrade them to IP aliases based connectivity..."
    
    detect-k8s-subnetwork
    if [ -z "${IP_ALIAS_SUBNETWORK}" ]; then
      echo "No k8s cluster subnetwork found. Exiting..."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. hack/update-import-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlWriter.java

        private void writeBundles(DefaultVersionCatalog model) {
            List<String> aliases = model.getBundleAliases();
            if (aliases.isEmpty()) {
                return;
            }
            writeTableHeader("bundles");
            for (String alias : aliases) {
                List<String> bundle = model.getBundle(alias).getComponents();
                writeLn(normalizeForToml(alias) + " = [" + bundle.stream()
                    .map(TomlWriter::normalizeForToml)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            return wrappingNode;
        }
    
        private static ClassNode toClassNode(List<String> aliases, ClassNode root) {
            for (String alias : aliases) {
                ClassNode current = root;
                // foo -> foo is the alias
                // foo.bar.baz --> baz is the alias
                List<String> dotted = nameSplitter().splitToList(alias);
                int last = dotted.size() - 1;
                for (int i = 0; i < last; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-resource-alias-analysis -verify-diagnostics %s | FileCheck %s
    
    // Test 2 resources that do not alias.
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @non_aliasing_reads_writes
    // expected-remark@below {{Region #0, Arg #0, ID 1 : 1}}
    // expected-remark@below {{Region #0, Arg #1, ID 2 : 2}}
    func.func @non_aliasing_reads_writes(
      %arg0: !tf_res,
      %arg1: !tf_res,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    [[invalid_alias_notation]]
    == Invalid alias or bundle notation
    
    This error indicates that you have used an alias (or bundle) name which isn't supported by Gradle.
    Gradle puts some restrictions on alias names: they must match the following regular expression: `[a-z]([a-zA-Z0-9_.\-])+`
    
    A typical alias name would be `some-alias`.
    
    [[invalid_module_notation]]
    == Invalid module notation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginDslSupport.groovy

    trait PluginDslSupport {
        void withPlugin(String id) {
            withPlugins([(id): null])
        }
    
        void withPluginAlias(String alias) {
            withPlugins([:], [(alias): null])
        }
    
        void withPluginAliases(List<String> aliases = []) {
            withPlugins([:], aliases.collectEntries { [it, null] })
        }
    
        void withPluginsBlockContents(String block) {
            def text = buildFile.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    //go:build !go1.22
    // +build !go1.22
    
    package aliases
    
    import (
    	"go/types"
    )
    
    // Alias is a placeholder for a go/types.Alias for <=1.21.
    // It will never be created by go/types.
    type Alias struct{}
    
    func (*Alias) String() string         { panic("unreachable") }
    func (*Alias) Underlying() types.Type { panic("unreachable") }
    func (*Alias) Obj() *types.TypeName   { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  10. cmd/preferredimports/preferredimports.go

    							a.failed = true
    						}
    						replacements[importName] = alias
    						if imp.Name != nil {
    							imp.Name.Name = alias
    						} else {
    							imp.Name = ast.NewIdent(alias)
    						}
    					}
    					break
    				}
    			}
    
    			if len(replacements) > 0 {
    				if *confirm {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top