Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 461 for wildCards (0.12 sec)

  1. releasenotes/notes/42119.yaml

    issue:
      - https://github.com/istio/istio/issues/42094
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 22:23:04 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/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.8K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfiguration.java

     */
    public interface IvyConfiguration extends Named {
    
        /**
         * Add the name of a configuration that this configuration extends.
         * The extend value can use the following wildcards:
         * <ul>
         *     <li>* - all other configurations</li>
         *     <li>*(public) - all other public configurations</li>
         *     <li>*(private) - all other private configurations</li>
         * </ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            def objects = new ModelType<List<? extends Object>>() {}.typeVariables[0]
    
            expect:
            extendsString.wildcard
            superString.wildcard
            objects.wildcard
            anything.wildcard
    
            !extendsString.isClass()
            !superString.isClass()
            !objects.isClass()
            !anything.isClass()
    
            extendsString.rawClass == String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top