Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 166 for wildcards (0.15 sec)

  1. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix_beta.yaml

    metadata:
      name: testing-service-01-test-02
      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway-2
      hosts:
        - testing-01.com # Expected: no validation error because the gateway ns prefix is a wildcard match
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_replace.txt

    # Support replace statement in go.work file
    
    # Replacement in go.work file, and none in go.mod file.
    go list -m example.com/dep
    stdout 'example.com/dep v1.0.0 => ./dep'
    
    # Wildcard replacement in go.work file overrides version replacement in go.mod
    # file.
    go list -m example.com/other
    stdout 'example.com/other v1.0.0 => ./other2'
    
    -- go.work --
    use m
    
    replace example.com/dep => ./dep
    replace example.com/other => ./other2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 948 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. pkg/config/analysis/analyzers/testdata/envoy-filter-filterchain.yaml

                  commonTlsContext:
                    alpnProtocols:
                      - http/1.1
                    tlsCertificateSdsSecretConfigs:
                      - name: kubernetes://wildcard-cert
                        sdsConfig:
                          ads: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 16 03:57:19 UTC 2023
    - 815 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

        private Trans2FindFirst2Response response;
    
    
        public DirFileEntryEnumIterator1 ( SmbTreeHandleImpl th, SmbResource parent, String wildcard, ResourceNameFilter filter, int searchAttributes )
                throws CIFSException {
            super(th, parent, wildcard, filter, searchAttributes);
        }
    
    
        @SuppressWarnings ( "resource" )
        @Override
        protected final FileEntry open () throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/stablehlo/stablehlo.py

    signatures that do not rely on MLIR classes.
    
    Exporting all of MLIR Python bindings to TF OSS has high maintenance
    implications, especially given the frequency that TF updates the revision of
    LLVM used.
    """
    
    # pylint: disable=wildcard-import
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top