Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 917 for checkDep (0.14 sec)

  1. tensorflow/c/kernels/histogram_summary_op.cc

        TF_KernelBuilder_TypeConstraint(
            builder, "T",
            static_cast<TF_DataType>(tensorflow::DataTypeToEnum<T>::v()), status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << "Error while adding type constraint";
        TF_RegisterKernelBuilder("HistogramSummary", builder, status);
        CHECK_EQ(TF_OK, TF_GetCode(status))
            << "Error while registering Histogram Summmary kernel";
      }
      TF_DeleteStatus(status);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ErroringAction.java

    import org.gradle.api.Action;
    
    /**
     * Action adapter/implementation for action code that may throw exceptions.
     *
     * Implementations implement doExecute() (instead of execute()) which is allowed to throw checked exceptions.
     * Any checked exceptions thrown will be wrapped as unchecked exceptions and re-thrown.
     *
     * How the exception is wrapped is subject to {@link UncheckedException#throwAsUncheckedException(Throwable)}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                        div.append($("<label>", {for: id}).text(title));
                        var checkbox = $("<input>", {type: "checkbox", id: id, checked: true});
                        div.append(checkbox);
                        checkbox.change(function () {
                            if (checkbox.is(':checked')) {
                                $("." + id).show();
                            } else {
                                $("." + id).hide();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    int OpView::NumOutputs() const { return output_args_.size(); }
    
    ArgView OpView::OnlyInput() const {
      CHECK_EQ(input_args_.size(), 1);  // Crash OK
      return input_args_.front();
    }
    
    ArgView OpView::OnlyOutput() const {
      CHECK_EQ(output_args_.size(), 1);  // Crash OK
      return output_args_.front();
    }
    
    string OpView::FunctionName() const { return op_.name(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/const.go

    	. "internal/types/errors"
    	"math"
    )
    
    // overflow checks that the constant x is representable by its type.
    // For untyped constants, it checks that the value doesn't become
    // arbitrarily large.
    func (check *Checker) overflow(x *operand, opPos syntax.Pos) {
    	assert(x.mode == constant_)
    
    	if x.val.Kind() == constant.Unknown {
    		// TODO(gri) We should report exactly what went wrong. At the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/sourcechecker_test.go

    			pkgPath:         "k8s.io/bar/foo/baz/etc",
    			shouldBeAllowed: true,
    		},
    	}
    
    	checker := &illegalPackageSourceChecker{disallowedPrefixes}
    
    	for _, tc := range testCases {
    		if checker.IsForbidden(tc.pkgPath) {
    			if tc.shouldBeAllowed {
    				t.Fatalf("expected package path %q to have been allowed", tc.pkgPath)
    			}
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/c/kernels/ops/merge_summary.cc

      TF_OpDefinitionBuilderAddAttr(op_builder, "N: int >= 1");
      TF_OpDefinitionBuilderSetShapeInferenceFunction(
          op_builder, &merge_summary_shape_inference_fn);
    
      TF_RegisterOpDefinition(op_builder, status);
      CHECK_EQ(TF_GetCode(status), TF_OK)
          << "MergeSummary op registration failed: " << TF_Message(status);
      TF_DeleteStatus(status);
    }
    
    TF_ATTRIBUTE_UNUSED static bool MergeSummaryOpRegistered = []() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 21:04:53 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         * Runtime exceptions are rethrown as is.
         * Checked exceptions are wrapped in {@link BuildOperationInvocationException}.</p>
         */
        void run(RunnableBuildOperation buildOperation);
    
        /**
         * Calls the given build operation, returns the result.
         *
         * <p>Rethrows any exception thrown by the action.
         * Runtime exceptions are rethrown as is.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/DeprecatedTLSVersionDependencyResolutionIntegrationTest.groovy

            and:
            writeBuildFile()
            failedResolve.prepare()
    
            when:
            module.allowAll()
    
            then:
            executer.withStackTraceChecksDisabled()
            fails('checkDeps')
    
            and:
            failedResolve.assertFailurePresent(failure)
            failure.assertHasCause("Could not GET '$server.uri")
            failure.assertThatCause(
                allOf(
                    anyOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/go/types/typeparam.go

    // constraint is non-nil, it must be fully defined.
    func NewTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	return (*Checker)(nil).newTypeParam(obj, constraint)
    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top