Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 398 for Succeeded (0.14 sec)

  1. src/reflect/abi.go

    	}
    	return nil, ptr
    }
    
    // regAssign attempts to reserve argument registers for a value of
    // type t, stored at some offset.
    //
    // It returns whether or not the assignment succeeded, but
    // leaves any changes it made to a.steps behind, so the caller
    // must undo that work by adjusting a.steps if it fails.
    //
    // This method along with the assign* methods represent the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. buildscripts/disable-root.sh

    ./mc ready minioadm
    
    ./mc ls minioadm/
    
    ./mc admin config set minioadm/ api root_access=off
    
    sleep 3s # let things settle a little
    
    ./mc ls minioadm/
    if [ $? -eq 0 ]; then
    	echo "listing succeeded, 'minioadmin' was not disabled"
    	exit 1
    fi
    
    set -e
    
    killall -9 minio
    
    export MINIO_API_ROOT_ACCESS=on
    for ((i = 0; i < $((nr_servers)); i++)); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/apis/batch/zz_generated.deepcopy.go

    func (in *UncountedTerminatedPods) DeepCopyInto(out *UncountedTerminatedPods) {
    	*out = *in
    	if in.Succeeded != nil {
    		in, out := &in.Succeeded, &out.Succeeded
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    	if in.Failed != nil {
    		in, out := &in.Failed, &out.Failed
    		*out = make([]types.UID, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/gcemetadata/kube.go

    		if err != nil {
    			err = fmt.Errorf("gcemetadata deployment failed: %v", err)
    			scopes.Framework.Infof("=== FAILED: Deploy GCE Metadata Server ===")
    			_ = c.Close()
    		} else {
    			scopes.Framework.Info("=== SUCCEEDED: Deploy GCE Metadata Server ===")
    		}
    	}()
    
    	c.ns, err = namespace.New(ctx, namespace.Config{
    		Prefix: ns,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top