Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for FATAL (0.06 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		runtime.WithInformerFactory(tc.informerFactory),
    	}
    	fh, err := runtime.NewFramework(tCtx, nil, nil, opts...)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	pl, err := New(tCtx, nil, fh, feature.Features{EnableDynamicResourceAllocation: true})
    	if err != nil {
    		t.Fatal(err)
    	}
    	tc.p = pl.(*dynamicResources)
    
    	// The tests use the API to create the objects because then reactors
    	// get triggered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	if err := controller.client.Kube().CoreV1().Endpoints("nsA").Delete(context.TODO(), "svc", metav1.DeleteOptions{}); err != nil {
    		t.Fatal(err)
    	}
    	if err := controller.client.Kube().DiscoveryV1().EndpointSlices("nsA").Delete(context.TODO(), "svc", metav1.DeleteOptions{}); err != nil {
    		t.Fatal(err)
    	}
    	assertPendingResync(0)
    }
    
    func TestWorkloadInstanceHandlerMultipleEndpoints(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    }
    
    func RunTestList(ctx context.Context, t *testing.T, store storage.Interface, compaction Compaction, ignoreWatchCacheTests bool) {
    	initialRV, preset, err := seedMultiLevelData(ctx, store)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	list := &example.PodList{}
    	storageOpts := storage.ListOptions{
    		// Ensure we're listing from "now".
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    		Recursive:       true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	//
    	// If neither unwindPrintErrors or unwindSilentErrors are set, unwinding
    	// performs extra consistency checks and throws on any error.
    	//
    	// Note that there are a small number of fatal situations that will throw
    	// regardless of unwindPrintErrors or unwindSilentErrors.
    	unwindPrintErrors unwindFlags = 1 << iota
    
    	// unwindSilentErrors silently ignores errors during unwinding.
    	unwindSilentErrors
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    		fs.AddFlagSet(f)
    	}
    
    	args := []string{fmt.Sprintf("--feature-gates=%v=true", clientgofeaturegate.WatchListClient)}
    	if err := fs.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    
    	watchListClientValue := clientgofeaturegate.FeatureGates().Enabled(clientgofeaturegate.WatchListClient)
    	if !watchListClientValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    		// when all the required modules are old enough
    		// but the command line is not.
    		// TODO(bcmills): modload.EditBuildList should catch this instead,
    		// and then this can be changed to base.Fatal(err).
    		toolchain.SwitchOrFatal(ctx, err)
    	}
    
    	newReqs := reqsFromGoMod(modload.ModFile())
    	r.reportChanges(oldReqs, newReqs)
    
    	if gowork := modload.FindGoWork(base.Cwd()); gowork != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	// ELF/Mach-O/etc. relocations, not Go relocations, this must match ELF.Reloc1,
    	// etc.), and a boolean indicating success/failure (a failing value indicates
    	// a fatal error).
    	Archreloc func(*Target, *loader.Loader, *ArchSyms, loader.Reloc, loader.Sym,
    		int64) (relocatedOffset int64, nExtReloc int, ok bool)
    	// Archrelocvariant is a second arch-specific hook used for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    	var prev *Int
    	for i, s := range cmpAbsTests {
    		x, ok := new(Int).SetString(s, 0)
    		if !ok {
    			t.Fatalf("SetString(%s, 0) failed", s)
    		}
    		if prev != nil && prev.Cmp(x) >= 0 {
    			t.Fatal("cmpAbsTests entries not sorted in ascending order")
    		}
    		values[i] = x
    		prev = x
    	}
    
    	for i, x := range values {
    		for j, y := range values {
    			// try all combinations of signs for x, y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // but the version of the runtime used for linkage won't actually contain
    // definitions of that symbol. See issue #42396 for details.
    //
    // As currently implemented, this is a fatal error. This has drawbacks
    // in that if there are multiple missing builtins, the error will only
    // cite the first one. On the plus side, terminating the link here has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		return
    	}
    	timeLogMu.Lock()
    	defer timeLogMu.Unlock()
    	if timeLogFile == nil {
    		f, err := os.OpenFile(os.Getenv("GOBUILDTIMELOGFILE"), os.O_RDWR|os.O_APPEND, 0666)
    		if err != nil {
    			log.Fatal(err)
    		}
    		buf := make([]byte, 100)
    		n, _ := f.Read(buf)
    		s := string(buf[:n])
    		if i := strings.Index(s, "\n"); i >= 0 {
    			s = s[:i]
    		}
    		i := strings.Index(s, " start")
    		if i < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top