Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for IMPLEMENTATION (0.74 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::string custom_ops_summary =
            GetOpsSummary(custom_ops_, /*summary_title=*/"Custom");
        LOG(WARNING) << "The following operation(s) need TFLite custom op "
                        "implementation(s):\n"
                     << custom_ops_summary
                     << "\nSee instructions: "
                        "https://www.tensorflow.org/lite/guide/ops_custom";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Template parameter `FloatOrInt` must be standard C integer or floating-point
    // types.
    template <typename FloatOrInt>
    int GetLengthOfRange(FloatOrInt start, FloatOrInt limit, FloatOrInt delta) {
      // Refer to the implementation in
      // tensorflow/lite/kernels/range.cc.
      FloatOrInt diff = limit - start;
      if (std::is_integral<FloatOrInt>::value) {
        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
          # "proxy implementation should not be vulnerable to the invalid conntrack state bug"
          # test pass. https://issues.k8s.io/122663#issuecomment-1885024015
          params+=" --proxy-mode=nftables --conntrack-tcp-be-liberal"
          ;;
      esac
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js.map

    properly positioned.\n   *\n   * Note that this modifier will not touch the DOM, it just prepares the styles\n   * so that `applyStyle` modifier can apply it. This separation is useful\n   * in case you need to replace `applyStyle` with a custom implementation.\n   *\n   * This modifier has `850` as `order` value to maintain backward compatibility\n   * with previous versions of Popper.js. Expect the modifiers ordering method\n   * to change in future major versions of the library.\n   *\n   * @memberof...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    }
    
    // PackagesAndErrorsOutsideModule is like PackagesAndErrors but runs in
    // module-aware mode and ignores the go.mod file in the current directory or any
    // parent directory, if there is one. This is used in the implementation of 'go
    // install pkg@version' and other commands that support similar forms.
    //
    // modload.ForceUseModules must be true, and modload.RootMode must be NoRoot
    // before calling this function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__policy__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    }
    
    func TestDeleteInvokesAdmissionControl(t *testing.T) {
    	// TODO: remove mutating deny when we removed it from the endpoint implementation and ported all plugins
    	for _, admit := range []admission.Interface{alwaysMutatingDeny{}, alwaysValidatingDeny{}} {
    		t.Logf("Testing %T", admit)
    
    		storage := map[string]rest.Storage{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    		// TODO: this test fails, but it's just because
    		// fakeConn implements the optional Execer interface,
    		// so arguably this is the correct behavior. But
    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top