Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 344 for matchingMG (0.04 seconds)

  1. misc/ios/detect.go

    	if len(udids) == 0 {
    		fail("no udid found; is a device connected?")
    	}
    
    	mps := detectMobileProvisionFiles(udids)
    	if len(mps) == 0 {
    		fail("did not find mobile provision matching device udids %q", udids)
    	}
    
    	fmt.Println("# Available provisioning profiles below.")
    	fmt.Println("# NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID")
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

                }
            }
        }
    
        /**
         * Retrieves a client that matches the given URL key.
         * @param urlKey The URL key to match.
         * @return The matching CrawlerClient instance, or null if no match is found.
         */
        public CrawlerClient getClient(final String urlKey) {
            if (StringUtil.isBlank(urlKey)) {
                return null;
            }
    
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java

            }
            if (allRequired) {
                hash = hash * 31 + 2;
            }
            return hash;
        }
    
        /**
         * Sets the map of regular expressions to be used for matching.
         *
         * @param regexMap a map where the key is the field name and the value is the Pattern object
         */
        public void setRegexMap(final Map<String, Pattern> regexMap) {
            this.regexMap = regexMap;
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Jul 06 02:13:03 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

        /**
         * The flags for this DCERPC message
         */
        protected int flags = 0;
        /**
         * The total length of this DCERPC message
         */
        protected int length = 0;
        /**
         * The call ID for matching requests and responses
         */
        protected int call_id = 0;
        /**
         * The allocation hint for buffer sizing
         */
        protected int alloc_hint = 0;
        /**
         * The result code of the DCERPC operation
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

            return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s;
        }
    
        /**
         * Gets the virtual host key from the current request.
         * The key is determined by matching HTTP headers against configured virtual hosts.
         *
         * @return The virtual host key, or empty string if no match found
         */
        public String getVirtualHostKey() {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  6. apache-maven/src/assembly/maven/conf/toolchains.xml

       |   plugins should document which type you must use.
       |
       | * provides: A list of key/value-pairs.
       |   Based on the toolchain-configuration in the pom.xml Maven will search for
       |   matching <provides/> configuration. You can decide for yourself which key-value
       |   pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default
       |   the version has a special meaning. If you configured in the pom.xml '1.5'
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Aug 22 14:47:43 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        def mainApiChangesJsonFile = apiChangesJsonDirectory.file("accepted-public-api-changes.json")
    
        def acceptedViolationsFiles = apiChangesJsonDirectory.asFileTree.matching {
            include("**/*.json")
        }
    
        def isSnapshot = gradleModule.identity.snapshot
        inputs.files(acceptedViolationsFiles)
        inputs.property("baseline.version", compatibilityBaselineVersion)
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                    writeText(readText().replace("\\Q<lastUpdated>\\E\\d+\\Q</lastUpdated>\\E".toRegex(), "<lastUpdated>${Year.now().value}0101000000</lastUpdated>"))
                }
                localRepository.get().asFileTree.matching { include("**/*.module") }.forEach {
                    val content = it.readText()
                        .replace("\"buildId\":\\s+\"\\w+\"".toRegex(), "\"buildId\": \"\"")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java

        @TaskAction
        public void checkMultiLanguageSnippets() {
            Map<File, List<Error>> errors = new TreeMap<>();
    
            getDocumentationRoot().getAsFileTree().matching(spec -> spec.include("**/*.adoc")).forEach(file -> {
                gatherBadSnippetsInFile(file, errors);
            });
    
            if (!errors.isEmpty()) {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Aug 29 10:12:17 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  10. internal/bucket/replication/replication_test.go

    			destBucket:            "destinationbucket",
    			sameTarget:            false,
    			expectedParsingErr:    Errorf("invalid destination '%v'", ""),
    			expectedValidationErr: nil,
    		},
    		// 12 destination not matching ARN in replication config
    		{
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 32.4K bytes
    - Click Count (0)
Back to Top