Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for wildcards (0.25 sec)

  1. internal/event/rules.go

    	for pattern := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    			return true
    		}
    	}
    	return false
    }
    
    // Match - returns TargetIDSet matching object name in rules.
    func (rules Rules) Match(objectName string) TargetIDSet {
    	targetIDs := NewTargetIDSet()
    
    	for pattern, targetIDSet := range rules {
    		if wildcard.MatchSimple(pattern, objectName) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types.go

    func (kv BatchJobKV) Empty() bool {
    	return kv.Key == "" && kv.Value == ""
    }
    
    // Match matches input kv with kv, value will be wildcard matched depending on the user input
    func (kv BatchJobKV) Match(ikv BatchJobKV) bool {
    	if kv.Empty() {
    		return true
    	}
    	if strings.EqualFold(kv.Key, ikv.Key) {
    		return wildcard.Match(kv.Value, ikv.Value)
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. internal/bucket/versioning/versioning.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package versioning
    
    import (
    	"encoding/xml"
    	"io"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // State - enabled/disabled/suspended states
    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/scheduler/internal/queue/events.go

    	WildCardEvent = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "WildCardEvent"}
    	// UnschedulableTimeout is the event when a pod stays in unschedulable for longer than timeout.
    	UnschedulableTimeout = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "UnschedulableTimeout"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/instances.go

    	return newOption("localhost", value)
    }
    
    func AdditionalLocalhost(value LocalhostValue) Instance {
    	return newOption("additional_localhost", value)
    }
    
    func Wildcard(value WildcardValue) Instance {
    	return newOption("wildcard", value)
    }
    
    func AdditionalWildCard(value WildcardValue) Instance {
    	return newOption("additional_wildcard", value)
    }
    
    func DualStack(value bool) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top