Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for FATAL (0.04 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

        Write_PkiData "${CA_CERT_BUNDLE}" ${env:CA_FILE_PATH}
      }
      else {
        Log-Output -Fatal 'CA_CERT not present in kube-env'
      }
    
      if ($kube_env.ContainsKey('KUBELET_CERT')) {
        $KUBELET_CERT = ${kube_env}['KUBELET_CERT']
        Write_PkiData "${KUBELET_CERT}" ${env:KUBELET_CERT_PATH}
      }
      else {
        Log-Output -Fatal 'KUBELET_CERT not present in kube-env'
      }
      if ($kube_env.ContainsKey('KUBELET_KEY')) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		makePkg := func(src string) *Package {
    			pkg, err := typecheck(src, &conf, &Info{Instances: instMap, Uses: useMap})
    			// allow error for issue51803
    			if err != nil && (pkg == nil || pkg.Name() != "issue51803") {
    				t.Fatal(err)
    			}
    			imports[pkg.Name()] = pkg
    			return pkg
    		}
    		makePkg(lib)
    		pkg := makePkg(test.src)
    
    		t.Run(pkg.Name(), func(t *testing.T) {
    			// Sort instances in source order for stability.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				environment.VersionedOptions{
    					IntroducedVersion: version.MajorMinor(1, 999),
    					EnvOptions:        []celgo.EnvOption{celgo.Lib(&fakeLib{})},
    				})
    			if err != nil {
    				t.Fatal(err)
    			}
    			loader := NewExpressionsEnvLoader()
    			if tt.unmodified {
    				loader = StoredExpressionsEnvLoader()
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top