Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,269 for Failed (0.17 sec)

  1. pkg/util/kernel/version_test.go

    			},
    			expected: version.MajorMinor(5, 4),
    		},
    		{
    			name: "failed to read os-release file",
    			readFileFunc: func(_ string) ([]byte, error) {
    				return nil, errors.New("open /proc/sys/kernel/osrelease: failed to read file")
    			},
    			err:      errors.New("failed to read os-release file: open /proc/sys/kernel/osrelease: failed to read file"),
    			expected: nil,
    		},
    		{
    			name: "version not parsable",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/testing/fake.go

    	if serv == nil {
    		return fmt.Errorf("failed to update service, service can't be nil")
    	}
    	key := toServiceKey(serv)
    	f.Services[key] = serv
    	return nil
    }
    
    // DeleteVirtualServer is a fake implementation, it simply deletes the VirtualServer from the cache store.
    func (f *FakeIPVS) DeleteVirtualServer(serv *utilipvs.VirtualServer) error {
    	if serv == nil {
    		return fmt.Errorf("failed to delete service: service can't be nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. cluster/gce/gci/mounter/mounter.go

    	if err == nil {
    		return nil
    	}
    
    	if !strings.EqualFold(string(output), nfsRPCBindErrMsg) {
    		// Mount failed but not because of RPC bind error
    		return fmt.Errorf("mount failed: %v\nMounting command: %s\nMounting arguments: %v\nOutput: %s", err, chrootCmd, args, string(output))
    	}
    
    	// Mount failed because it is NFS V3 and we need to run rpcBind
    	output, err = exec.Command(chrootCmd, rootfsPath, rpcBindCmd, "-w").CombinedOutput()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 20 22:26:16 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/tests-kotlin/taskFinalizersWithFailureKotlin.out

    taskX
    taskY
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':taskX'.
    > java.lang.RuntimeException (no error message)
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  5. test/strength.go

    		fmt.Printf(`	if want, got := int%d(%d), s*%d; want != got {
    		failed = true
    		fmt.Printf("got %d * %%d == %%d, wanted %d\n",  s, got)
    	}
    `, bits, want, i, i, want)
    		want += fact
    	}
    
    	fmt.Printf("}\n")
    	return fmt.Sprintf("%s(%d)", n, fact)
    }
    
    func main() {
    	fmt.Printf("package main\n")
    	fmt.Printf("import \"fmt\"\n")
    	fmt.Printf("var failed = false\n")
    
    	f1 := testMul(17, 32)
    	f2 := testMul(131, 64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. tests/callbacks_test.go

    		t.Errorf("callbacks tests failed, got %v", msg)
    	}
    
    	createCallback.Remove("c4")
    	if ok, msg := assertCallbacks(createCallback, []string{"c3", "c2"}); !ok {
    		t.Errorf("callbacks tests failed, got %v", msg)
    	}
    
    	createCallback.Remove("c2")
    	if ok, msg := assertCallbacks(createCallback, []string{"c3"}); !ok {
    		t.Errorf("callbacks tests failed, got %v", msg)
    	}
    
    	createCallback.Remove("c3")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. security/pkg/pki/util/generate_csr_test.go

    			} else {
    				t.Errorf("%s: failed to gen CSR", id)
    			}
    		}
    
    		pemBlock, _ := pem.Decode(csrPem)
    		if pemBlock == nil {
    			t.Fatalf("%s: failed to decode csr", id)
    		}
    		csr, err := x509.ParseCertificateRequest(pemBlock.Bytes)
    		if err != nil {
    			t.Fatalf("%s: failed to parse csr", id)
    		}
    		if err = csr.CheckSignature(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 09:40:13 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleBuildResultFunctionalTest.groovy

            outputWithFailureAndNoDebugging.contains("FAILURE: Build failed with an exception.")
            outputWithFailureAndNoDebugging.contains("* What went wrong:")
            outputWithFailureAndNoDebugging.contains("Execution failed for task ':broken'.")
    
            !outputWithoutFailure.contains("Build failed with an exception.")
            !outputWithoutFailure.contains("* What went wrong:")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. internal/kms/errors.go

    		Err:     "key with given key ID does not exit",
    	}
    
    	// ErrDecrypt is an error returned by the KMS when the decryption
    	// of a ciphertext failed.
    	ErrDecrypt = Error{
    		Code:    http.StatusBadRequest,
    		APICode: "kms:InvalidCiphertextException",
    		Err:     "failed to decrypt ciphertext",
    	}
    
    	// ErrNotSupported is an error returned by the KMS when the requested
    	// functionality is not supported by the KMS service.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. tests/integration/ambient/cacert_rotation_test.go

    			if err != nil {
    				t.Errorf("failed to get initial workload secret: %v", err)
    			}
    
    			// Update CA with new intermediate cert
    			if err := cert.CreateCustomCASecret(t,
    				"ca-cert-alt-2.pem", "ca-key-alt-2.pem",
    				"cert-chain-alt-2.pem", "root-cert-alt.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top