Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 237 for notFound (0.11 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. src/cmd/compile/internal/types2/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    	methods := under(T).(*Interface).typeSet().methods // T must be an interface
    	if len(methods) == 0 {
    		return nil, false
    	}
    
    	const (
    		ok = iota
    		notFound
    		wrongName
    		unexported
    		wrongSig
    		ambigSel
    		ptrRecv
    		field
    	)
    
    	state := ok
    	var m *Func // method on T we're trying to implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. pkg/registry/core/namespace/storage/storage_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    	// should not exist
    	_, err = storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if !apierrors.IsNotFound(err) {
    		t.Errorf("expected NotFound, got %v", err)
    	}
    }
    
    func TestFinalizeDeletingNamespaceWithCompleteFinalizers(t *testing.T) {
    	// get finalize storage
    	etcdStorage, server := registrytest.NewEtcdStorage(t, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top