Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 125 for notFound (0.11 sec)

  1. src/main/webapp/WEB-INF/orig/view/error/redirect.jsp

    } else if("badRequest".equals(type)) {
    	redirectPage.append("/error/badrequest/");
    	response.sendRedirect(redirectPage.toString());
    } else if(!"badAuth".equals(type)) {
    	redirectPage.append("/error/notfound/?url=");
    	redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
    	response.sendRedirect(redirectPage.toString());
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 28 21:37:02 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/error/redirect.jsp

    } else if("badRequest".equals(type)) {
    	redirectPage.append("/error/badrequest/");
    	response.sendRedirect(redirectPage.toString());
    } else if(!"badAuth".equals(type)) {
    	redirectPage.append("/error/notfound/?url=");
    	redirectPage.append(java.net.URLEncoder.encode(requestUri , "UTF-8"));
    	response.sendRedirect(redirectPage.toString());
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 28 21:37:02 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vendor_import_missing.txt

    # Missing package error message
    ! go build vend/x/vendor/p/p
    
    -- vend/x/vendor/p/p/p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 27 21:32:59 UTC 2020
    - 122 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

                        if (snapshots && !version.endsWith("-SNAPSHOT")) {
                            details.notFound();
                            return;
                        }
                        if (releases && version.endsWith("-SNAPSHOT")) {
                            details.notFound();
                        }
                    }
                };
                if (filter == Actions.doNothing()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/net/nss_test.go

    # nfo libc "Name Service Switch"' for information about this file.
    
    passwd:         compat
    group:          compat
    shadow:         compat
    
    hosts:          files mdns4_minimal [NOTFOUND=return] dns mdns4
    networks:       files
    
    protocols:      db files
    services:       db files
    ethers:         db files
    rpc:            db files
    
    netgroup:       nis
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/CorePluginResolver.java

            if (!isCorePluginRequest(id)) {
                return PluginResolutionResult.notFound(getDescription(), format("plugin is not in '%s' namespace", CORE_PLUGIN_NAMESPACE));
            }
    
            PluginImplementation<?> plugin = pluginRegistry.lookup(id);
            if (plugin == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/templates/404.html

    {{ define "title" }}Page Not Found{{ end }}
    {{ define "content" }}
    <div class="notfound">
        <div class="icon">
            <img alt="Warning" title="Uh-oh" src="/img/exclamation-mark.svg" />
        </div>
    
        <div class="error">
            We're sorry, the page you requested cannot be found
        </div>
    
        <div class="explanation">
            The URL may be misspelled
        </div>
    </div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 389 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicInvokeResult.java

        }
    
        public static DynamicInvokeResult found() {
            return DynamicInvokeResult.NULL;
        }
    
        public static DynamicInvokeResult notFound() {
            return DynamicInvokeResult.NOT_FOUND;
        }
    
        private final Object value;
    
        private DynamicInvokeResult(@Nullable Object value) {
            this.value = value;
        }
    
        @Nullable
        public Object getValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.util.Path
    
    
    sealed class CheckedFingerprint {
        // No fingerprint, which means no cache entry
        object NotFound : CheckedFingerprint()
    
        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/plugins/CompositeBuildPluginResolverContributor.java

                    return PluginResolutionResult.notFound(SOURCE_DESCRIPTION, "None of the included builds contain this plugin");
                } else if (resolutionResult instanceof ResolvedPlugin) {
                    return PluginResolutionResult.found(((ResolvedPlugin) resolutionResult).resolution);
                }
    
                return PluginResolutionResult.notFound(SOURCE_DESCRIPTION, "No included builds contain this plugin");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top