Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 408 for Succeeded (0.21 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

          parser.parseOptionalAttrDict(op_attrs) ||
          parser.parseOptionalAttrDict(op_func_attrs))
        return mlir::failure();
    
      int64_t num_results = 0;
      if (succeeded(parser.parseOptionalColon())) {
        mlir::IntegerAttr attr;
        mlir::NamedAttrList attrs;
        if (failed(parser.parseAttribute(attr, "num_results", attrs)))
          return mlir::failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/runtime-gdb_unix_test.go

    		t.Fatalf("erroring signaling child: %v", err)
    	}
    
    	err = cmd.Wait()
    	t.Logf("child output:\n%s", output.String())
    	if err == nil {
    		t.Fatalf("Wait succeeded, want SIGABRT")
    	}
    	ee, ok := err.(*exec.ExitError)
    	if !ok {
    		t.Fatalf("Wait err got %T %v, want exec.ExitError", ee, ee)
    	}
    	ws, ok := ee.Sys().(syscall.WaitStatus)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/cm/dra/claiminfo_test.go

    					if cache.RWMutex.TryLock() {
    						return errors.New("Lock succeeded")
    					}
    					return nil
    				}
    			},
    		},
    		{
    			description: "cache is Rlocked inside a function",
    			funcGen: func(cache *claimInfoCache) func() error {
    				return func() error {
    					if cache.RWMutex.TryRLock() {
    						return errors.New("RLock succeeded")
    					}
    					return nil
    				}
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. internal/ringbuffer/ring_buffer.go

    		}
    		n, err = r.read(p)
    	}
    	if r.block && n > 0 {
    		r.readCond.Broadcast()
    	}
    	return n, err
    }
    
    // TryRead read up to len(p) bytes into p like Read but it is not blocking.
    // If it has not succeeded to acquire the lock, it return 0 as n and ErrAcquireLock.
    func (r *RingBuffer) TryRead(p []byte) (n int, err error) {
    	ok := r.mu.TryLock()
    	if !ok {
    		return 0, ErrAcquireLock
    	}
    	defer r.mu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K 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. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

            1 * preparer.prepareToScheduleTasks(_)
            1 * workGraph.populateWorkGraph(_)
            1 * workGraph.finalizeGraph()
            1 * workGraph.runWork() >> ExecutionResult.succeeded()
        }
    
        def "cannot schedule tasks when graph has not been created"() {
            when:
            graph.locateTask(taskIdentifier(DefaultBuildIdentifier.ROOT, ":task")).queueForExecution()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top