Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 548 for desc2 (0.05 sec)

  1. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    		{
    			desc: "invalid yaml",
    			file: newString(`*`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "invalid json",
    			file: newString(`{*`),
    			err:  "failed to decode",
    		},
    		// invalid object
    		{
    			desc: "missing kind",
    			file: newString(`{"apiVersion":"kubelet.config.k8s.io/v1beta1"}`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "missing version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Define a user property")
                    .build());
            options.addOption(Option.builder(Character.toString(OFFLINE))
                    .longOpt("offline")
                    .desc("Work offline")
                    .build());
            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. operator/pkg/cache/cache_test.go

    	"istio.io/istio/operator/pkg/object"
    )
    
    func TestFlushObjectCaches(t *testing.T) {
    	tests := []struct {
    		desc     string
    		wantSize int
    	}{
    		{
    			desc:     "flush-cache",
    			wantSize: 0,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			unstObjs := make(map[string]any)
    			tUnstructured := &unstructured.Unstructured{Object: unstObjs}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 20 18:46:12 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. internal/hash/reader_test.go

    	testCases := []struct {
    		desc              string
    		src               io.Reader
    		size              int64
    		actualSize        int64
    		md5hex, sha256hex string
    		err               error
    	}{
    		0: {
    			desc:       "Success, no checksum verification provided.",
    			src:        bytes.NewReader([]byte("abcd")),
    			size:       4,
    			actualSize: 4,
    		},
    		{
    			desc:       "Failure md5 mismatch.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/util/documentation_test.go

    import (
    	"testing"
    )
    
    func TestLongDesc(t *testing.T) {
    	tests := []struct {
    		desc string
    		in   string
    		out  string
    	}{
    		{
    			desc: "Empty input produces empty output",
    			in:   "",
    			out:  "",
    		},
    		{
    			desc: "Single line text is preserved as is",
    			in:   "Some text",
    			out:  "Some text",
    		},
    		{
    			desc: "Consecutive new lines are combined into a single paragraph",
    			in:   "Line1\nLine2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    /// Favor Mul over Div.
    def DivWithSqrtDivisor : Pat<
      (TF_DivOp:$src $arg0, (TF_SqrtOp $arg1)),
      (TF_MulOp:$dest1 $arg0, (TF_RsqrtOp:$dest2 $arg1)), [],
      [(CopyAttrs $src, $dest1), (CopyAttrs $src, $dest2)]>;
    
    //===----------------------------------------------------------------------===//
    // Log op patterns.
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

        visitMethodInsn_(Opcodes.INVOKEINTERFACE, owner, name, desc, itf)
    }
    
    
    internal
    fun MethodVisitor.INVOKESTATIC(owner: InternalName, name: String, desc: String) {
        visitMethodInsn_(Opcodes.INVOKESTATIC, owner, name, desc, false)
    }
    
    
    private
    fun MethodVisitor.visitMethodInsn_(opcode: Int, owner: InternalName, name: String, desc: String, itf: Boolean) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Enable converting TF to Stablehlo."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> post_training_quantization(
        "post-training-quantization",
        llvm::cl::desc("Enable post_training_quantization."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> legalize_custom_tensor_list_ops(
        "legalize-custom-tensor-list-ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/profile-dump_test.go

    func TestProfileDump(t *testing.T) {
    	testDataDir := filepath.Join(operatorRootDir, "cmd/mesh/testdata/profile-dump")
    	tests := []struct {
    		desc       string
    		configPath string
    	}{
    		{
    			desc: "all_off",
    		},
    		{
    			desc:       "config_path",
    			configPath: "components",
    		},
    		{
    			desc:       "list_path",
    			configPath: "values.gateways.istio-egressgateway.secretVolumes",
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 11:44:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. pkg/util/flag/flags_test.go

    	testCases := []struct {
    		desc      string
    		argc      string
    		expectErr bool
    		expectVal string
    	}{
    
    		{
    			desc:      "valid ipv4 1",
    			argc:      "blah --ipport=0.0.0.0",
    			expectVal: "0.0.0.0",
    		},
    		{
    			desc:      "valid ipv4 2",
    			argc:      "blah --ipport=127.0.0.1",
    			expectVal: "127.0.0.1",
    		},
    
    		{
    			desc:      "invalid IP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
Back to top