Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 631 for Succeeded (0.15 sec)

  1. pkg/ctrlz/topics/assets/templates/mem.html

            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status === 200) { // request succeeded
                    let ms = JSON.parse(this.responseText);
                    document.getElementById("HeapInuse").innerText = ms.HeapInuse.toLocaleString() + " bytes";
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/registry/storage/volumeattachment/strategy_test.go

    			if len(err) > 0 && !test.expectError {
    				t.Errorf("Validation of object failed: %+v", err)
    			}
    			if len(err) == 0 && test.expectError {
    				t.Errorf("Validation of object unexpectedly succeeded")
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/badsym_test.go

    	// The build should fail, but we want it to fail because we
    	// detected the error, not because we passed a bad flag to the
    	// C linker.
    
    	if err == nil {
    		t.Errorf("go build succeeded unexpectedly")
    	}
    
    	t.Logf("%s", output)
    
    	for _, line := range bytes.Split(output, []byte("\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. helm/minio/templates/post-job.yaml

        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      annotations:
        "helm.sh/hook": post-install,post-upgrade
        "helm.sh/hook-delete-policy": hook-succeeded,before-hook-creation
        {{- with .Values.postJob.annotations }}
          {{- toYaml . | nindent 4 }}
        {{- end }}
    spec:
      template:
        metadata:
          labels:
            app: {{ template "minio.name" . }}-job
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top