Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 533 for Merkel (0.84 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    lib.de.us
    
    // VeryPositive SIA : http://very.lv
    // Submitted by Danko Aleksejevs <******@****.***>
    2038.io
    
    // Vercel, Inc : https://vercel.com/
    // Submitted by Connor Davis <security@vercel.com>
    vercel.app
    vercel.dev
    now.sh
    
    // Viprinet Europe GmbH : http://www.viprinet.com
    // Submitted by Simon Kissel <******@****.***>
    router.management
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. tensorflow/c/kernels/bitcast_op.cc

        kernel->out_size = TF_DataTypeSize(kernel->output_data_type);
    
        size_t check_size = std::max(kernel->in_size, kernel->out_size) %
                            std::min(kernel->in_size, kernel->out_size);
        if (check_size != 0) {
          std::ostringstream err;
          err << "cannot convert between datatype " << kernel->input_data_type
              << " and " << kernel->output_data_type;
          TF_SetStatus(s, TF_INVALID_ARGUMENT, err.str().c_str());
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kubelet/sysctl/safe_sysctls.go

    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/klog/v2"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    )
    
    type sysctl struct {
    	// the name of sysctl
    	name string
    	// the minimum kernel version where the sysctl is available
    	kernel string
    }
    
    var safeSysctls = []sysctl{
    	{
    		name: "kernel.shm_rmid_forced",
    	}, {
    		name: "net.ipv4.ip_local_port_range",
    	}, {
    		name: "net.ipv4.tcp_syncookies",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/device_target.h

     protected:
      // Adds the kernel spec with the custom scale function for the kernel.
      LogicalResult RegisterKernel(llvm::StringRef kernel,
                                   const KernelSpecs::Signature& signature,
                                   const ScaleFn& fn, const ScaleDecomposeFn& dfn);
    
      // Adds the kernel spec with the scale constraint type for the kernel.
      LogicalResult RegisterKernel(llvm::StringRef kernel,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/c/kernels/histogram_summary_op.cc

      return kernel;
    }
    
    void HistogramSummaryOp_Delete(void* kernel) {
      delete static_cast<HistogramSummaryOp*>(kernel);
    }
    
    template <typename T>
    void HistogramSummaryOp_Compute(void* kernel, TF_OpKernelContext* ctx) {
      HistogramSummaryOp* k = static_cast<HistogramSummaryOp*>(kernel);
      TF_Tensor* tags;
      TF_Tensor* values;
      Safe_TF_StatusPtr status(TF_NewStatus());
      TF_GetInput(ctx, 0, &tags, status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_test.cc

        ASSERT_EQ(1, list.kernel_size());
        ASSERT_EQ(device_name, list.kernel(0).device_type());
        TF_DeleteBuffer(buf);
        TF_DeleteStatus(status);
      }
    
      {
        Status status;
        std::unique_ptr<OpKernel> kernel =
            GetFakeKernel(device_name, op_name, node_name, &status);
        TF_EXPECT_OK(status);
        ASSERT_NE(nullptr, kernel.get());
        kernel->Compute(nullptr);
      }
    
      ASSERT_TRUE(delete_called);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  7. pkg/util/kernel/constants.go

    limitations under the License.
    */
    
    package kernel
    
    // IPLocalReservedPortsNamespacedKernelVersion is the kernel version in which net.ipv4.ip_local_reserved_ports was namespaced(netns).
    // (ref: https://github.com/torvalds/linux/commit/122ff243f5f104194750ecbc76d5946dd1eec934)
    const IPLocalReservedPortsNamespacedKernelVersion = "3.16"
    
    // IPVSConnReuseModeMinSupportedKernelVersion is the minium kernel version supporting net.ipv4.vs.conn_reuse_mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pkg/kubelet/sysctl/allowlist_test.go

    	type Test struct {
    		sysctls []string
    		err     bool
    	}
    	for _, test := range []Test{
    		{sysctls: []string{"kernel.msg*", "kernel.sem"}},
    		{sysctls: []string{"kernel/msg*", "kernel/sem"}},
    		{sysctls: []string{" kernel.msg*"}, err: true},
    		{sysctls: []string{"kernel.msg* "}, err: true},
    		{sysctls: []string{"net.-"}, err: true},
    		{sysctls: []string{"net.*.foo"}, err: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

        kernel = tf.transpose(kernel, [0, 2, 1, 3, 4, 5])
        kernel = tf.reshape(kernel, [4, 4, int(channel), filters])
        kernel = tf.cast(kernel, inputs.dtype)
        ```
    
        If kernel\_size % block\_size != 0, padding is needed for the weight before
        transform, input of Convolution needs to be padded as well.
    
    1.  Rewrite the first convolution
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables.mlir

      attributes {tf.entry_function = {control_outputs = "", inputs = "", outputs = "dense_2/Add:0"}, tf_saved_model.exported_names = ["serving_default"]} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top