Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 199 for wildcards (0.78 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaProject.xml

                </tr>
                <tr>
                    <td>wildcards</td>
                    <td><literal>['!?*.java', '!?*.groovy']</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>ipr</td>
                    <td/>
                    <td/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    It also allows the use of wildcards to specify the resources that should be encrypted.
    Use '*.<group>' to encrypt all resources within a group or '*.*' to encrypt all resources.
    '*.' can be used to encrypt all resource in the core group.  '*.*' will encrypt all
    resources, even custom resources that are added after API server start.
    Use of wildcards that overlap within the same resource list or across multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_wild.txt

    # This test covers a crazy edge-case involving wildcards and multiple passes of
    # patch-upgrades, but if we get it right we probably get many other edge-cases
    # right too.
    
    go list -m all
    stdout '^example.net/a v0.1.0 '
    ! stdout '^example.net/b '
    
    
    # Requesting pattern example.../b by itself fails: there is no such module
    # already in the build list, and the wildcard in the first element prevents us
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternStepFactory.java

                }
            }
            if (endLiteral == source.length()) {
                if (endPrefixWildcard == 0) {
                    // No wildcards: matches #5 above
                    return new FixedPatternStep(source, caseSensitive);
                }
                // One or more '*' followed by one or more non-wildcard: matches #2 above
                return new HasSuffixPatternStep(source.substring(endPrefixWildcard), caseSensitive);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea {
        module {
            iml {
                whenMerged { it.jdkName = '1.44' }
            }
        }
    
        project {
            ipr {
                whenMerged { it.wildcards += '!?*.ruby' }
            }
        }
    }
    '''
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
    
            boolean matched = false;
            for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
                // TODO what about wildcards? Just specifying groups? versions?
                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
        public List<String> getPatterns() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeVisitor.java

     * default, no recursion is done for type arguments or type bounds. But subclasses can opt to do
     * recursion by calling {@link #visit} for any {@code Type} while visitation is in progress. For
     * example, this can be used to reject wildcards or type variables contained in a type as in:
     *
     * <pre>{@code
     * new TypeVisitor() {
     *   protected void visitParameterizedType(ParameterizedType t) {
     *     visit(t.getOwnerType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

        @Test
        fun `recognizes segments that are partially wildcarded`() {
            val instance = createFromPaths(listOf("foo*/*bar*/*baz/*.xml"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/bar/baz/.xml")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. internal/s3select/sql/jsonpath.go

    	errWildcardObjectLookup       = errors.New("Object wildcard used on non-object value")
    	errWildcardArrayLookup        = errors.New("Array wildcard used on non-array value")
    	errWildcardObjectUsageInvalid = errors.New("Invalid usage of object wildcard")
    )
    
    // jsonpathEval evaluates a JSON path and returns the value at the path.
    // If the value should be considered flat (from wildcards) any array returned should be considered individual values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/net/http/routing_index.go

    	segments map[routingIndexKey][]*pattern
    	// All patterns that end in a multi wildcard (including trailing slash).
    	// We do not try to be clever about indexing multi patterns, because there
    	// are unlikely to be many of them.
    	multis []*pattern
    }
    
    type routingIndexKey struct {
    	pos int    // 0-based segment position
    	s   string // literal, or empty for wildcard
    }
    
    func (idx *routingIndex) addPattern(pat *pattern) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top