Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for notFound (0.14 sec)

  1. tensorflow/c/experimental/ops/resource_variable_ops.cc

    }
    
    // Op: DestroyResourceOp()
    // Summary: Deletes the resource specified by the handle.
    //
    // Description:
    //   All subsequent operations using the resource will result in a NotFound
    //   error status.
    Status DestroyResourceOp(AbstractContext* ctx,
                             AbstractTensorHandle* const resource,
                             bool ignore_lookup_error, const char* name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    		return nil, err
    	}
    	return newObj, nil
    }
    
    func printIfNotExists(err error) {
    	if apierrors.IsNotFound(err) {
    		fmt.Println("[dryrun] The GET request didn't yield any result, the API Server returned a NotFound error.")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/web.xml

        <error-code>403</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location>
      </error-page>
      <error-page>
        <error-code>404</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=notFound</location>
      </error-page>
      <error-page>
        <error-code>408</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location>
      </error-page>
      <error-page>
        <error-code>500</error-code>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 13 21:53:22 UTC 2019
    - 7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResultTest.groovy

            def id = Mock(ModuleComponentIdentifier) {
                it.group >> "org.gradle"
                it.module >> "core"
                it.version >> "2.3"
            }
    
            when:
            result.notFound(id)
    
            then:
            result.failure instanceof ModuleVersionNotFoundException
        }
    
        def "copies results to an id resolve result"() {
            def idResult = Mock(BuildableComponentIdResolveResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/main/resources/fess.xml

    		<postConstruct name="addDesignJspFileName">
    			<arg>"error"</arg>
    			<arg>"error/error.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"errorNotFound"</arg>
    			<arg>"error/notFound.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"errorSystem"</arg>
    			<arg>"error/system.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/util/swap/swap_util.go

    	klog.InfoS("Swap is on", "/proc/swaps contents", procSwapsStr)
    	return len(procSwapsLines) > 1
    }
    
    // IsSwapOn detects whether swap in enabled on the system by inspecting
    // /proc/swaps. If the file does not exist, an os.NotFound error will be returned.
    // If running on windows, swap is assumed to always be false.
    func IsSwapOn() (bool, error) {
    	isSwapOnHelper := func() (bool, error) {
    		if sysruntime.GOOS == "windows" {
    			return false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    			ErrorTypeNotSupported,
    		},
    		{
    			func() *Error { return Duplicate(NewPath("f"), "v") },
    			ErrorTypeDuplicate,
    		},
    		{
    			func() *Error { return NotFound(NewPath("f"), "v") },
    			ErrorTypeNotFound,
    		},
    		{
    			func() *Error { return Required(NewPath("f"), "d") },
    			ErrorTypeRequired,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/net/nss.go

    // last in the list.
    func (c nssCriterion) standardStatusAction(last bool) bool {
    	if c.negate {
    		return false
    	}
    	var def string
    	switch c.status {
    	case "success":
    		def = "return"
    	case "notfound", "unavail", "tryagain":
    		def = "continue"
    	default:
    		// Unknown status
    		return false
    	}
    	if last && c.action == "return" {
    		return true
    	}
    	return c.action == def
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

                return PluginResolutionResult.found(pluginResolution);
            } else {
                return PluginResolutionResult.notFound("Classpath", "Plugin with id '" + pluginId + "' not found.");
            }
        }
    
        private boolean isPresentOnClasspath(PluginId pluginId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectArtifactResolver.java

                }
            }
            if (resolvableArtifact != null) {
                result.resolved(resolvableArtifact);
            } else {
                result.notFound(artifact.getId());
            }
        }
    
        public ValueCalculator<File> resolveArtifactLater(ComponentArtifactMetadata artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top