Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,735 for Failed (0.19 sec)

  1. src/go/doc/testdata/testing.0.golden

    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    	// Fatal is equivalent to Log() followed by FailNow(). 
    	func (c *B) Fatal(args ...any)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. test/typeparam/eface.go

    	if f[int](1) != 1 {
    		println("test 1 failed")
    	}
    	if f[int](2) != (interface{})(2) {
    		println("test 2 failed")
    	}
    	if g[int](3) != 3 {
    		println("test 3 failed")
    	}
    	if g[int](4) != (E[int])(4) {
    		println("test 4 failed")
    	}
    	if h[int](myint(5)) != myint(5) {
    		println("test 5 failed")
    	}
    	if h[int](myint(6)) != interface{ foo() }(myint(6)) {
    		println("test 6 failed")
    	}
    	if i[int](myint(7)) != myint(7) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/math/big/ratmarsh_test.go

    		tx.SetString(test + ".14159265")
    		if err := enc.Encode(&tx); err != nil {
    			t.Errorf("encoding of %s failed: %s", &tx, err)
    			continue
    		}
    		var rx Rat
    		if err := dec.Decode(&rx); err != nil {
    			t.Errorf("decoding of %s failed: %s", &tx, err)
    			continue
    		}
    		if rx.Cmp(&tx) != 0 {
    			t.Errorf("transmission of %s failed: got %s want %s", &tx, &rx, &tx)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:20:16 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      size_t start_map = fbb.StartMap();
    
      if (failed(AddIntAttr(func, attrs, "max_detections", &fbb)) ||
          failed(AddIntAttr(func, attrs, "max_classes_per_detection", &fbb)) ||
          failed(AddIntAttr(func, attrs, "num_classes", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "nms_score_threshold", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "nms_iou_threshold", &fbb)) ||
          failed(AddFloatAttr(func, attrs, "y_scale", &fbb)) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/math/big/intmarsh_test.go

    			tx.SetString(x, 10)
    			if err := enc.Encode(&tx); err != nil {
    				t.Errorf("encoding of %s failed: %s", &tx, err)
    				continue
    			}
    			var rx Int
    			if err := dec.Decode(&rx); err != nil {
    				t.Errorf("decoding of %s failed: %s", &tx, err)
    				continue
    			}
    			if rx.Cmp(&tx) != 0 {
    				t.Errorf("transmission of %s failed: got %s want %s", &tx, &rx, &tx)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 23:27:14 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun_test.go

    	if err != nil {
    		t.Fatalf("Failed to create new object: %v", err)
    	}
    
    	err = s.Delete(context.Background(), "key", out, nil, rest.ValidateAllObjectFunc, true, nil)
    	if err != nil {
    		t.Fatalf("Failed to dry-run delete the object: %v", err)
    	}
    
    	err = s.Get(context.Background(), "key", storage.GetOptions{}, out)
    	if err != nil {
    		t.Fatalf("Failed to retrieve dry-run deleted object: %v", err)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    			if err = og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- plugin validation failed with err: %v", err)); err != nil {
    				return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
    			}
    			return fmt.Errorf("RegisterPlugin error -- pluginHandler.ValidatePluginFunc failed")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/PrettyPrefixedLogHeaderFormatter.java

            if (status.isEmpty()) {
                return Lists.newArrayList(header(description, failed), EOL);
            } else {
                return Lists.newArrayList(header(description, failed), status(status, failed), EOL);
            }
        }
    
        private StyledTextOutputEvent.Span header(String message, boolean failed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block.go

    		if err != nil {
    			return "", fmt.Errorf("failed to get NodeStageSecretRef %s/%s: %v",
    				csiSource.NodeStageSecretRef.Namespace, csiSource.NodeStageSecretRef.Name, err)
    		}
    	}
    
    	// Creating a stagingPath directory before call to NodeStageVolume
    	if err := os.MkdirAll(stagingPath, 0750); err != nil {
    		return "", errors.New(log("blockMapper.stageVolumeForBlock failed to create dir %s: %v", stagingPath, err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/data_dir_test.go

    	if err != nil {
    		t.Fatalf("Failed to open data dir: %v", err)
    	}
    	isEmpty, err := d.IsEmpty()
    	if err != nil {
    		t.Fatalf("Failed to check if data dir is empty: %v", err)
    	}
    	if !isEmpty {
    		t.Errorf("Expected empty data directory to exist")
    	}
    	err = d.Initialize(targetVersion)
    	if err != nil {
    		t.Fatalf("Failed initialize data directory %s: %v", d.path, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top