Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for wildcard$ (0.18 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        public void setDestinationFile(File destinationFile) {
            this.destinationFile.set(destinationFile);
        }
    
        /**
         * List of class names that should be included in analysis. Names can use wildcards (* and ?). If left empty, all classes will be included. Defaults to an empty list.
         */
        @Nullable
        @Optional
        @Input
        public List<String> getIncludes() {
            return includes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Wildcards, indicated with `*`, can be used in the group or module name. They can be the only character or appear at the end of the group or module respectively.
    The following wildcard notation examples are valid:
    
    * `org.apache.commons:*`: will let all modules belonging to group `org.apache.commons` update
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. cmd/api-router.go

    package cmd
    
    import (
    	"net"
    	"net/http"
    
    	consoleapi "github.com/minio/console/api"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/wildcard"
    	"github.com/rs/cors"
    )
    
    func newHTTPServerFn() *xhttp.Server {
    	globalObjLayerMutex.RLock()
    	defer globalObjLayerMutex.RUnlock()
    	return globalHTTPServer
    }
    
    func setHTTPServer(h *xhttp.Server) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. build/root/Makefile

    else
    cross cross-in-a-container: KUBE_BUILD_CONFORMANCE = y
    cross:
    	hack/make-rules/cross.sh
    cross-in-a-container: KUBE_OUTPUT_SUBPATH = $(OUT_DIR)/dockerized
    cross-in-a-container:
    ifeq (,$(wildcard /.dockerenv))
    	echo -e "\nThe 'cross-in-a-container' target can only be used from within a docker container.\n"
    else
    	hack/make-rules/cross.sh
    endif
    endif
    
    define CMD_HELP_INFO
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    // the list contains the wildcard "*".
    func hasStringSuffixInSlice(str string, list []string) bool {
    	str = strings.ToLower(str)
    	for _, v := range list {
    		if v == "*" {
    			return true
    		}
    
    		if strings.HasSuffix(str, strings.ToLower(v)) {
    			return true
    		}
    	}
    	return false
    }
    
    // Returns true if any of the given wildcard patterns match the matchStr.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway_test.go

    			2,
    		},
    		{
    			"multi-server-config",
    			[]config.Config{gwHTTPFoo, gwHTTPWildcardAlternate, gwHTTPWildcard},
    			2,
    			3,
    			map[string]int{"http.7": 2, "http.8": 1},
    			3,
    		},
    		{
    			"http-tcp-wildcard-server-config",
    			[]config.Config{gwHTTPFoo, gwTCPWildcard},
    			2,
    			2,
    			map[string]int{"http.7": 1},
    			2,
    		},
    		{
    			"tcp-http-server-config",
    			[]config.Config{gwTCPWildcard, gwHTTPWildcard},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    			if !localMatch {
    				// If the wildcard doesn't even match this service, it won't be in the index
    				continue
    			}
    			// The mostSpecificWildcardVsIndex ensures that each VirtualService host is only associated with
    			// a single service in the registry. This is generally results in the most specific wildcard match for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar.go

    	// Destination rules imported across all egress listeners. This
    	// contains the computed set based on public/private destination rules
    	// as well as the inherited ones, in addition to the wildcard matches
    	// such as *.com applying to foo.bar.com. Each hostname in this map
    	// corresponds to a service in the services array above. When computing
    	// CDS, we simply have to find the matching service and return the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

         *
         * The `confs` mapping is structured as `fromConfiguration -&gt; [targetConf...]`. Targets are collected for all configurations in the `fromConfiguration` hierarchy.
         *   - '*' is a wildcard key, that matches _all_ `fromConfiguration values.
         *       - '*, !A' is a key that matches _all_ `fromConfiguration values _except_ 'A'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            label must appear by itself as the first label.
    
    
                        Hostname can be "precise" which is a domain name without the terminating
                        dot of a network host (e.g. "foo.example.com") or "wildcard", which is a
                        domain name prefixed with a single wildcard label (e.g. `*.example.com`).
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top