Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 631 for Succeeded (0.2 sec)

  1. pkg/cache/cache.go

    // inaccuracies.
    type Stats struct {
    	// Writes captures the number of times state in the cache was added or updated.
    	Writes uint64
    
    	// Hits captures the number of times a Get operation succeeded to find an entry in the cache.
    	Hits uint64
    
    	// Misses captures the number of times a Get operation failed to find an entry in the cache.
    	Misses uint64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_test.cc

    ModuleOp ParseModuleOp(const StringRef module_op_str, Block& block,
                           MLIRContext& ctx) {
      const LogicalResult parse_result =
          parseSourceString(module_op_str, &block, ParserConfig(&ctx));
      EXPECT_TRUE(succeeded(parse_result));
    
      return cast<ModuleOp>(block.front());
    }
    
    TEST_F(TfSavedModelTest,
           GetInitializerFunctionReturnsNullWhenNoSessionInitializerOp) {
      constexpr StringRef kModuleOpStr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

                                        .verifyPasses(false)
                                        .allowUnregisteredDialects(false)
                                        .setPassPipelineParser(passPipeline))
                      .succeeded());
    }
    
    TEST(DumpRawStringToFileTest, Valid) {
      llvm::StringRef example = "module {\n}";
      setenv("TF_DUMP_GRAPH_PREFIX", testing::TmpDir().c_str(), 1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 13:40:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

         */
        public <S> S transition(T fromState, T toState, Supplier<? extends S> action) {
            return synchronizer.withLock(() -> doTransition(fromState, toState, () -> ExecutionResult.succeeded(action.get())).getValueOrRethrow());
        }
    
        /**
         * Transitions to the given "to" state, returning any failure in the result object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    		if err != nil {
    			span.AddEvent("limitedReadBody failed", attribute.Int("len", len(body)), attribute.String("err", err.Error()))
    			scope.err(err, w, req)
    			return
    		}
    		span.AddEvent("limitedReadBody succeeded", attribute.Int("len", len(body)))
    
    		options := &metav1.UpdateOptions{}
    		if err := metainternalversionscheme.ParameterCodec.DecodeParameters(req.URL.Query(), scope.MetaGroupVersion, options); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pkg/apis/storagemigration/types.go

    const (
    	// Indicates that the migration is running.
    	MigrationRunning MigrationConditionType = "Running"
    	// Indicates that the migration has completed successfully.
    	MigrationSucceeded MigrationConditionType = "Succeeded"
    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

            iterationMatchers.length == 0
        }
    
        static class UnexpectedSuccessException extends Exception {
            UnexpectedSuccessException(String feature) {
                super("Expected to fail with $feature, but succeeded!")
            }
        }
    
        private class ToBeFixedInterceptor implements IMethodInterceptor {
    
            @Override
            void intercept(IMethodInvocation invocation) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/quota_linux_test.go

    	if err != nil {
    		if testcase.expectFailure {
    			return nil
    		}
    		return err
    	}
    	if testcase.expectFailure {
    		return fmt.Errorf("path %s expected to fail; succeeded and got %s", testcase.path, backingDev)
    	}
    	if backingDev == testcase.expectedResult {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        llvm::SmallVectorImpl<OpAsmParser::UnresolvedOperand>* region_args,
        llvm::SmallVectorImpl<Type>* region_arg_types) {
      // No operands or empty operand list.
      bool parsed_l_paren = succeeded(parser->parseOptionalLParen());
      if (!parsed_l_paren || succeeded(parser->parseOptionalRParen()))
        return success();
    
      // Parse comma separated operands of the following format:
      //   replicated_input
      //     [%a, ...] as %block_arg0: type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    			if err != nil {
    				span.AddEvent("limitedReadBody failed", attribute.Int("len", len(body)), attribute.String("err", err.Error()))
    				scope.err(err, w, req)
    				return
    			}
    			span.AddEvent("limitedReadBody succeeded", attribute.Int("len", len(body)))
    			if len(body) > 0 {
    				s, err := negotiation.NegotiateInputSerializer(req, false, metainternalversionscheme.Codecs)
    				if err != nil {
    					scope.err(err, w, req)
    					return
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top