Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for FATAL (0.05 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // class.
      static void TearDownTestCase() {}
    
      // Returns true iff the current test has a fatal failure.
      static bool HasFatalFailure();
    
      // Returns true iff the current test has a non-fatal failure.
      static bool HasNonfatalFailure();
    
      // Returns true iff the current test has a (either fatal or
      // non-fatal) failure.
      static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				frameworkruntime.WithLogger(logger),
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			informerFactory.Start(ctx.Done())
    			informerFactory.WaitForCacheSync(ctx.Done())
    
    			nodeInfos, err := snapshot.NodeInfos().List()
    			if err != nil {
    				t.Fatal(err)
    			}
    			sort.Slice(nodeInfos, func(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    		nsConfig, err := namespace.New(t, namespace.Config{
    			Prefix: "badgateway",
    			Inject: false,
    			Labels: map[string]string{
    				constants.DataplaneModeLabel: "ambient",
    			},
    		})
    		if err != nil {
    			t.Fatal(err)
    		}
    		istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    			"waypoint",
    			"apply",
    			"--namespace",
    			nsConfig.Name(),
    			"--revision",
    			"foo",
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. src/testing/testing.go

    func (c *common) Errorf(format string, args ...any) {
    	c.checkFuzzFn("Errorf")
    	c.log(fmt.Sprintf(format, args...))
    	c.Fail()
    }
    
    // Fatal is equivalent to Log followed by FailNow.
    func (c *common) Fatal(args ...any) {
    	c.checkFuzzFn("Fatal")
    	c.log(fmt.Sprintln(args...))
    	c.FailNow()
    }
    
    // Fatalf is equivalent to Logf followed by FailNow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		oldestProtocol := oldestService.Ports[0].Protocol
    		if oldestProtocol != protocol.HTTP && isHTTPListener(listeners[0]) {
    			t.Fatal("expected TCP listener, found HTTP")
    		} else if oldestProtocol == protocol.HTTP && !isHTTPListener(listeners[0]) {
    			t.Fatal("expected HTTP listener, found TCP")
    		}
    
    		// Validate that listener conflict preserves the listener of oldest service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    	if got == nil {
    		return nil
    	}
    	s, err := protomarshal.Marshal(got)
    	if err != nil {
    		t.Fatal(err)
    	}
    	meta := clusterServicesMetadata{}
    	if err := json.Unmarshal(s, &meta); err != nil {
    		t.Fatal(err)
    	}
    	res := []string{}
    	for _, m := range meta.Services {
    		res = append(res, m.Host)
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tests/query_test.go

    func TestQueryScanToArray(t *testing.T) {
    	err := DB.Create(&User{Name: "testname1", Age: 10}).Error
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	users := [2]*User{{Name: "1"}, {Name: "2"}}
    	err = DB.Model(&User{}).Where("name = ?", "testname1").Find(&users).Error
    	if err != nil {
    		t.Fatal(err)
    	}
    	if users[0] == nil || users[0].Name != "testname1" {
    		t.Error("users[0] not covered")
    	}
    	if users[1] != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				}
    
    			default:
    				panic(fmt.Sprintf("internal error: modload missing case for pattern %s", m.Pattern()))
    			}
    		}
    	}
    
    	initialRS, err := loadModFile(ctx, &opts)
    	if err != nil {
    		base.Fatal(err)
    	}
    
    	ld := loadFromRoots(ctx, loaderParams{
    		PackageOpts:  opts,
    		requirements: initialRS,
    
    		allPatternIsRoot: allPatternIsRoot,
    
    		listRoots: func(rs *Requirements) (roots []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    					t.Fatalf("failed to attach: %v", err)
    				}
    			}
    
    			// retrieve attached status
    			stats, err := csiAttacher.VolumesAreAttached(specs, types.NodeName(nodeName))
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(tc.attachedSpecs) != len(stats) {
    				t.Errorf("expecting %d attachment status, got %d", len(tc.attachedSpecs), len(stats))
    			}
    
    			// compare attachment status for each spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. src/math/rand/v2/chacha8_test.go

    	}
    
    	var n int
    	for n < chacha8outlen {
    		if IntN(2) == 0 {
    			out, err := p.MarshalBinary()
    			if err != nil {
    				t.Fatal(err)
    			}
    			if IntN(2) == 0 {
    				p = NewChaCha8([32]byte{})
    			}
    			if err := p.UnmarshalBinary(out); err != nil {
    				t.Fatal(err)
    			}
    		}
    		buf := make([]byte, IntN(100))
    		if n+len(buf) > chacha8outlen {
    			buf = buf[:chacha8outlen-n]
    		}
    		n += len(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
Back to top