Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 166 for wildcards (0.2 sec)

  1. docs/tls/kubernetes/README.md

    For a [distributed MinIO setup](https://min.io/docs/minio/kubernetes/upstream/operations/installation.html#procedure), where there are multiple pods with different domain names expected to run, you will either need wildcard certificates valid for all the domains or have specific certificates for each domain. If you are going to use specific certificates, make sure to create Kubernetes secrets accordingly.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetStrategy.java

                    return;
                }
                if (type.isHasWildcardTypeVariables()) {
                    extractionContext.add(String.format("type parameter of %s cannot be a wildcard", ModelSet.class.getName()));
                    return;
                }
    
                List<ModelType<?>> typeVariables = type.getTypeVariables();
                if (typeVariables.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/reflect/TypeOfSpec.groovy

            expect:
            typeOf(String).componentType == null
            new TypeOf<List<String>>() {}.componentType == null
            new TypeOf<List<?>>() {}.actualTypeArguments[0].with { wildcard && componentType == null }
        }
    
        def "getFullyQualifiedName returns FQN"() {
            given:
            def stringType = typeOf(String)
    
            expect:
            stringType.simpleName == 'String'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:51:08 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. tools/packaging/common/gcp_envoy_bootstrap.json

                }]
              }]
            }
          }
        ],
        "listeners":[
          {
            "address": {
               "socket_address": {
                 "protocol": "TCP",
                 "address": "{{ .wildcard }}",
                 "port_value": {{ .envoy_status_port }}
               }
            },
            "filter_chains": [
              {
                "filters": [
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. releasenotes/notes/37057.yaml

      
      `ISTIO_OUTBOUND_OWNER_GROUPS` - is a comma separated list of groups whose outgoing traffic
      should be redirected to Envoy (sidecar).
      A group can be specified either by name or by a numeric GID.
      The wildcard character `*` can be used to configure redirection of traffic from all groups
       (default).
    
      `ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE` - is a comma separated list of groups whose outgoing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. src/net/http/routing_tree_test.go

    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    	test(buildTree(pat2), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", "", nil},
    		{"GET", "", "/a/b/c", pat2, []string{"c"}},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a multi wildcard should match both URLs.
    	pat3 := "/a/b/{w...}"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

                ConstantReference.NOT_NULL -> KaContractReturnsNotNullEffectDeclaration(analysisContext.token)
                ConstantReference.WILDCARD -> KaContractReturnsSuccessfullyEffectDeclaration(analysisContext.token)
                is BooleanConstantReference -> KaContractReturnsSpecificValueEffectDeclaration(
                    KaContractConstantValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/cmd/root.go

    		&cfg.InboundInterceptionMode)
    
    	flag.BindEnv(fs, constants.InboundPorts, "b",
    		"Comma separated list of inbound ports for which traffic is to be redirected to Envoy (optional). "+
    			"The wildcard character \"*\" can be used to configure redirection for all ports. An empty list will disable.",
    		&cfg.InboundPortsInclude)
    
    	flag.BindEnv(fs, constants.LocalExcludePorts, "d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/util/hosts.go

    	}
    }
    
    // ConvertHostToFQDN returns the given host as a FQDN, if it isn't already.
    func ConvertHostToFQDN(namespace resource.Namespace, host string) string {
    	fqdn := host
    	// Convert to FQDN only if host is not a wildcard or a FQDN
    	if !strings.HasPrefix(host, "*") &&
    		!strings.Contains(host, ".") {
    		fqdn = host + "." + string(namespace) + "." + DefaultClusterLocalDomain
    	}
    	return fqdn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/AbstractAnnotationDrivenComponentModelRuleExtractor.java

                return;
            }
    
            ModelType<?> elementType = typeVariables.get(0);
            if (elementType.isWildcard()) {
                problems.add(ruleDefinition, String.format("%s type %s cannot be a wildcard type (i.e. cannot use ? super, ? extends etc.).", typeParameter.getDisplayName(), elementType.getDisplayName()));
                return;
            }
            dataCollector.parameterTypes.put(typeParameter, elementType);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top