Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for wildcards (0.18 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            then:
            factory.communicationAddresses.every {
                factory.isCommunicationAddress(it)
            }
    
            !factory.isCommunicationAddress(ip(127, 0, 0, 3))
        }
    
        def "wildcard address is always present"() {
    
            when:
            defaultAddresses()
    
            then:
            factory.wildcardBindingAddress == new InetSocketAddress(0).address
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

      gatewayClassName: acme-lb
      listeners:
      - name: https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: wildcard-example-com-cert
            namespace: gateway-api-example-ns2
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-ns1-gateways-to-ref-secrets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  3. internal/bucket/replication/destination.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package replication
    
    import (
    	"encoding/xml"
    	"fmt"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // DestinationARNPrefix - destination ARN prefix as per AWS S3 specification.
    const DestinationARNPrefix = "arn:aws:s3:::"
    
    // DestinationARNMinIOPrefix - destination ARN prefix for MinIO.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

                synchronized (lock) {
                    init();
                    return wildcardBindingAddress;
                }
            } catch (Exception e) {
                throw new RuntimeException("Could not determine a usable wildcard IP for this machine.", e);
            }
        }
    
        private void init() throws Exception {
            if (initialized) {
                return;
            }
    
            initialized = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.groovy

            expect:
            select('one.dot', 'has.two.dots').includedTests == ['one.dot', 'has.two/dots']
        }
    
        def "ignores wildcard to select all tests from module"() {
            expect:
            select('ModuleName.*').includedTests == ['ModuleName.*']
        }
    
        def "can use wildcard to select all test case from suite"() {
            expect:
            select('ModuleName.suite.*').includedTests == ['ModuleName.suite']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. cmd/batch-expire_test.go

      rules:
        - type: object  # regular objects with zero or more older versions
          name: NAME # match object names that satisfy the wildcard expression.
          olderThan: 70h # match objects older than this value
          createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
          tags:
            - key: name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["update"]
        # TODO: should be on just */status but wildcard is not supported
        resources: ["*"]
    
      # Needed because status reporter sets the config map owner reference to the istiod pod
      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run_test.go

    			},
    		},
    		{
    			"inbound-ports-wildcard",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "*"
    			},
    		},
    		{
    			"inbound-ports-tproxy",
    			func(cfg *config.Config) {
    				cfg.InboundPortsInclude = "32000,31000"
    				cfg.InboundInterceptionMode = constants.TPROXY
    			},
    		},
    		{
    			"inbound-ports-wildcard-tproxy",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "xxx:aaa");
            assertQueryBuilder(WildcardQueryBuilder.class, //
                    "{\"wildcard\":{\"url\":{\"wildcard\":\"*aaa*\",\"boost\":1.0}}}", //
                    "inurl:aaa");
            assertQueryBuilder(TermQueryBuilder.class, //
                    "{\"term\":{\"url\":{\"value\":\"aaa\",\"boost\":1.0}}}", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["update"]
        # TODO: should be on just */status but wildcard is not supported
        resources: ["*"]
    
      # Needed because status reporter sets the config map owner reference to the istiod pod
      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top