Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for FATAL (0.04 sec)

  1. pkg/kubelet/nodestatus/setters_test.go

    				false, // externalCloudProvider
    				nil,   // cloud
    				nodeAddressesFunc)
    
    			// call setter on existing node
    			err := setter(ctx, existingNode)
    			if testCase.shouldError && err == nil {
    				t.Fatal("expected error but no error returned")
    			}
    			if err != nil && !testCase.shouldError {
    				t.Fatalf("unexpected error: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			in: func() string {
    				caPrivateKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    				if err != nil {
    					t.Fatal(err)
    				}
    				caCert, err := certutil.NewSelfSignedCACert(certutil.Config{CommonName: "test-ca"}, caPrivateKey)
    				if err != nil {
    					t.Fatal(err)
    				}
    				return string(pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: caCert.Raw}))
    			},
    			want: "",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //    whether it is built in the debug mode or not.
    #define GTEST_CHECK_(condition) \
        GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		}
    		got.Insert(addr.ResourceName())
    	}
    }
    
    func TestRBACConvert(t *testing.T) {
    	files := file.ReadDirOrFail(t, "testdata")
    	if len(files) == 0 {
    		// Just in case
    		t.Fatal("expected test cases")
    	}
    	for _, f := range files {
    		name := filepath.Base(f)
    		if !strings.Contains(name, "-in.yaml") {
    			continue
    		}
    		t.Run(name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. 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)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //    whether it is built in the debug mode or not.
    #define GTEST_CHECK_(condition) \
        GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                addError("xml parsing: " + getLocationString(ex) + ": " + ex.getMessage());
            }
    
            @Override
            public void fatalError(SAXParseException ex) {
                addError("[Fatal Error] " + getLocationString(ex) + ": " + ex.getMessage());
            }
    
            /** Returns a string of the location. */
            private String getLocationString(SAXParseException ex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/networking/core/httproute_test.go

    				t.Fatalf("expected vhost domain %s in vhost %s, for route %s not found. got domains %v", want, vhost.Name, routeName, vhost.Domains)
    			}
    		}
    
    		if !vhost.GetIncludeRequestAttemptCount() {
    			t.Fatal("Expected that include request attempt count is set to true, but set to false")
    		}
    	}
    	if (expectedRoutes >= 0) && (numberOfRoutes != expectedRoutes) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top