Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for notFound (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    							// that the provided configuration is capable of matching
    							// params as expected, and not matching params when not expected.
    							// Also ensures the NotFound setting works as expected with this particular
    							// configuration of ParamRef when all the previously
    							// matched params are deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		// Deletion is racy, i.e., there could be multiple update
    		// requests to remove all finalizers from the object, so we
    		// ignore the NotFound error.
    		if storage.IsNotFound(err) {
    			_, err := e.finalizeDelete(ctx, obj, true, options)
    			// clients are expecting an updated object if a PUT succeeded,
    			// but finalizeDelete returns a metav1.Status, so return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      if (!cpu_factory) {
        return errors::NotFound(
            "CPU Factory not registered. Can't run EncapsulateSubgraphsPass");
      }
      TF_RETURN_IF_ERROR(cpu_factory->CreateDevices(
          session_options, "/job:localhost/replica:0/task:0", &devices));
      if (devices.empty()) {
        return errors::NotFound(
            "Failed to create a CPU device for EncapsulateSubgraphsPass");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Containers: containers,
    		},
    	}
    
    	// Set fake sandbox and faked containers to fakeRuntime.
    	makeAndSetFakePod(t, m, fakeRuntime, pod)
    	fakeRuntime.InjectError("StopContainer", status.Error(codes.NotFound, "No such container"))
    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    	require.NoError(t, err)
    	p := kubecontainer.ConvertPodStatusToRunningPod("", podStatus)
    	gracePeriod := int64(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    				podWorkers.runtime.PodStatus = *tc.runtimeStatus
    				podWorkers.runtime.Err = nil
    			} else {
    				podWorkers.runtime.PodStatus = kubecontainer.PodStatus{}
    				podWorkers.runtime.Err = status.Error(codes.NotFound, "No such pod")
    			}
    			fns = append(fns, func() {
    				podWorkers.runtime.PodStatus = kubecontainer.PodStatus{}
    				podWorkers.runtime.Err = nil
    			})
    
    			podWorkers.UpdatePod(tc.update, fns...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//                   on some operations may differ from the requested
    	//                   resource.
    	//   "id"   string - the identifier of the missing resource
    	// Status code 404
    	StatusReasonNotFound StatusReason = "NotFound"
    
    	// StatusReasonAlreadyExists means the resource you are creating already exists.
    	// Details (optional):
    	//   "kind" string - the kind attribute of the conflicting resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            }
          }
        }
        if (auto ident_op = llvm::dyn_cast<TF::IdentityOp>(user)) {
          auto index = FindReturnIndex(ident_op->getResult(0));
          if (index != not_found) return index;
        }
      }
      return not_found;
    }
    
    // Skip the assertions because they currently create problematic dependencies.
    constexpr bool kDoAssertions = true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_DEADLINE_EXCEEDED,
                static_cast<TF_Code>(tensorflow::error::DEADLINE_EXCEEDED));
      EXPECT_EQ(TF_NOT_FOUND, static_cast<TF_Code>(tensorflow::error::NOT_FOUND));
      EXPECT_EQ(TF_ALREADY_EXISTS,
                static_cast<TF_Code>(tensorflow::error::ALREADY_EXISTS));
      EXPECT_EQ(TF_PERMISSION_DENIED,
                static_cast<TF_Code>(tensorflow::error::PERMISSION_DENIED));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top