Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 298 for Mystring (0.15 sec)

  1. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            String field = "filetype";
            String query = "others";
            String wcQuery1 = "othe*";
            String wcQuery2 = "oth??s";
            Map<String, String> params = new HashMap<>();
            params.put("q", field + ":" + query);
            params.put("num", "100");
            String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

                    return read();
                }
            }
    
            if (ch == '"' && !quoted) {
                inString = !inString;
                quoted = false;
            } else if (ch == '\\') {
                quoted = !quoted;
            } else {
                quoted = false;
                if (!inString) {
                    if (ch == '/') {
                        ch = next();
                        if (ch == '/') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            String response = checkGetMethod(body, getListEndpointSuffix()).asString();
            return JsonPath.from(response).getList(getJsonPath() + "." + prop);
        }
    
        protected String getJsonPath() {
            return "response." + getListEndpointSuffix() + ".findAll {it." + getKeyProperty() + ".startsWith(\"" + getNamePrefix() + "\")}";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

       * CharMatcher.ascii().matchesAllOf(ipString)}.
       *
       * @param ipString {@code String} to evaluated as an IP string literal
       * @return {@code true} if the argument is a valid IP string literal
       */
      public static boolean isInetAddress(String ipString) {
        return ipStringToBytes(ipString, null) != null;
      }
    
      private static final class Scope {
        private String scope;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. src/fmt/print.go

    }
    
    // Stringer is implemented by any value that has a String method,
    // which defines the “native” format for that value.
    // The String method is used to print values passed as an operand
    // to any format that accepts a string or to an unformatted printer
    // such as [Print].
    type Stringer interface {
    	String() string
    }
    
    // GoStringer is implemented by any value that has a GoString method,
    // which defines the Go syntax for that value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelVersionParser.java

            public int hashCode() {
                return delegate.hashCode();
            }
    
            @Override
            public String asString() {
                return delegate.toString();
            }
    
            @Override
            public String toString() {
                return asString();
            }
        }
    
        static class DefaultVersionRange implements VersionRange {
            private final VersionScheme versionScheme;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBuildState.java

            return clock.getCurrentTime();
        }
    
        @Override
        public String getBuildInvocationId() {
            return buildInvocationId.getId().asString();
        }
    
        @Override
        public String getWorkspaceId() {
            return workspaceId.getId().asString();
        }
    
        @Override
        public String getUserId() {
            return userId.getId().asString();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 10:59:09 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/GradleVersionResolver.java

                case RELEASE_CANDIDATE:
                    return getVersion(releaseCandidate.asString(), version);
                default:
                    return version;
            }
        }
    
        static String getVersion(String json, String placeHolder) {
            Type type = new TypeToken<Map<String, String>>() {}.getType();
            Map<String, String> map = new Gson().fromJson(json, type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 15:14:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginBuildStateIntegrationTest.groovy

                        assert buildState.buildInvocationId == services.get(${BuildInvocationScopeId.name}).id.asString()
                        assert buildState.workspaceId == services.get(${WorkspaceScopeId.name}).id.asString()
                        assert buildState.userId == services.get(${UserScopeId.name}).id.asString()
    
                        assert (buildState.daemonScanInfo != null) == ${GradleContextualExecuter.isDaemon()}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanScopeIdsIntegrationTest.groovy

            """
            succeeds("help")
    
            then:
            def buildInvocationId = scopeIds.buildInvocationId.asString()
            def workspaceId = scopeIds.workspaceId.asString()
            def userId = scopeIds.userId.asString()
    
            output.contains "ids: [buildInvocation: $buildInvocationId, workspace: $workspaceId, user: $userId]"
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top