Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 118 for Succeeded (0.14 sec)

  1. src/runtime/debug/stack_test.go

    	cmd.Env = append(os.Environ(), "GO_RUNTIME_DEBUG_TEST_ENTRYPOINT=setcrashoutput", "CRASHOUTPUT="+crashOutput)
    	err = cmd.Run()
    	stderr := fmt.Sprint(cmd.Stderr)
    	if err == nil {
    		t.Fatalf("child process succeeded unexpectedly (stderr: %s)", stderr)
    	}
    	t.Logf("child process finished with error %v and stderr <<%s>>", err, stderr)
    
    	// Read the file the child process should have written.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/crypto/hmac/hmac.go

    	if err != nil {
    		return
    	}
    
    	h.outer.Reset()
    	h.outer.Write(h.opad)
    	omarshal, err := marshalableOuter.MarshalBinary()
    	if err != nil {
    		return
    	}
    
    	// Marshaling succeeded; save the marshaled state for later
    	h.ipad = imarshal
    	h.opad = omarshal
    	h.marshaled = true
    }
    
    // New returns a new HMAC hash using the given [hash.Hash] type and key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

      } else if (auto t = mlir::dyn_cast<RankedTensorType>(types[0])) {
        if (!t.hasStaticShape()) return failure();
        auto layout = GetTPUInfeedLayoutFromAPI(t);
        std::vector<int64_t> minor_to_major;
        if (succeeded(layout)) {
          minor_to_major = layout.value();
        } else {
          /* If we're not running on a TPU node, we might not be able to
           * actually call the part of the TPU API that gives us layout.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    				authContext = security.AuthContext{GrpcContext: ctx}
    			}
    
    			result, err := auth.Authenticate(authContext)
    			if len(tt.authenticateErrMsg) > 0 {
    				if err == nil {
    					t.Errorf("Succeeded. Error expected: %v", err)
    				} else if err.Error() != tt.authenticateErrMsg {
    					t.Errorf("Incorrect error message: want %q but got %q",
    						tt.authenticateErrMsg, err.Error())
    				}
    			} else if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

            result
        }
    
        ExecutionFailure fails() {
            waitForBuild()
            if (!(result instanceof ExecutionFailure)) {
                throw new UnexpectedBuildFailure("build was expected to fail but succeeded")
            }
            failure = result as ExecutionFailure
            failure
        }
    
        private void waitForBuild() {
            long t0 = System.currentTimeMillis()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/net/fd_windows.go

    				fd.pfd.SetWriteDeadline(aLongTimeAgo)
    				close(done)
    			})
    			defer func() {
    				if !stop() {
    					// Wait for the call to SetWriteDeadline to complete so that we can
    					// reset the deadline if everything else succeeded.
    					<-done
    				}
    			}()
    		}
    	}
    
    	if !canUseConnectEx(fd.net) {
    		err := connectFunc(fd.pfd.Sysfd, ra)
    		return nil, os.NewSyscallError("connect", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    class GTEST_API_ TestPartResult {
     public:
      // The possible outcomes of a test part (i.e. an assertion or an
      // explicit SUCCEED(), FAIL(), or ADD_FAILURE()).
      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
        kFatalFailure      // Failed and the test should be terminated.
      };
    
      // C'tor.  TestPartResult does NOT have a default constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    class GTEST_API_ TestPartResult {
     public:
      // The possible outcomes of a test part (i.e. an assertion or an
      // explicit SUCCEED(), FAIL(), or ADD_FAILURE()).
      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
        kFatalFailure      // Failed and the test should be terminated.
      };
    
      // C'tor.  TestPartResult does NOT have a default constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * other callers have added to it.
           *
           * This read is guaranteed to get us the right value because we only set this once (here).
           *
           * requireNonNull is safe because either our compareAndSet succeeded or it failed because
           * another thread did it for us.
           */
          seenExceptionsLocal = requireNonNull(seenExceptions);
        }
        return seenExceptionsLocal;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. pkg/registry/storage/csinode/strategy_test.go

    			if len(betaErr) > 0 && !test.expectError {
    				t.Errorf("Validation of v1beta1 object failed: %+v", betaErr)
    			}
    			if len(betaErr) == 0 && test.expectError {
    				t.Errorf("Validation of v1beta1 object unexpectedly succeeded")
    			}
    		})
    	}
    }
    
    func getValidCSINode(name string) *storage.CSINode {
    	return &storage.CSINode{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top