Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 540 for desc3 (0.3 sec)

  1. src/encoding/xml/marshal_test.go

    }, {
    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " 	\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    	testCases := []struct {
    		desc   string
    		object runtime.Object
    		opts   *metav1beta1.TableOptions
    		target *schema.GroupVersionKind
    
    		expectedUnwrap bool
    		expectedObj    runtime.Object
    		expectedErr    error
    	}{
    		{
    			desc:        "metav1.Status",
    			object:      status,
    			expectedObj: status,
    			expectedErr: nil,
    		},
    		{
    			desc:        "cacheableObject nil convert",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

            Map<String, Object> context = null;
    
            if (session != null) {
                PluginDescriptor desc = new PluginDescriptor();
                desc.setGroupId(PluginDescriptor.getDefaultPluginGroupId());
                desc.setArtifactId(PluginDescriptor.getDefaultPluginArtifactId("toolchains"));
    
                MavenProject current = session.getCurrentProject();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    					}
    				}
    			}
    		})
    	}
    }
    
    func TestFeatureEnabled(t *testing.T) {
    	var tests = []struct {
    		desc                         string
    		shutdownGracePeriodRequested time.Duration
    		featureGateEnabled           bool
    		expectEnabled                bool
    	}{
    		{
    			desc:                         "shutdownGracePeriodRequested 0; disables feature",
    			shutdownGracePeriodRequested: time.Duration(0 * time.Second),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. src/io/fs/sub_test.go

    func TestSub(t *testing.T) {
    	check := func(desc string, sub FS, err error) {
    		t.Helper()
    		if err != nil {
    			t.Errorf("Sub(sub): %v", err)
    			return
    		}
    		data, err := ReadFile(sub, "goodbye.txt")
    		if string(data) != "goodbye, world" || err != nil {
    			t.Errorf(`ReadFile(%s, "goodbye.txt" = %q, %v, want %q, nil`, desc, string(data), err, "goodbye, world")
    		}
    
    		dirs, err := ReadDir(sub, ".")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pkg/kubelet/config/file_linux_test.go

    						t.Fatalf("%s: Cannot convert pod %#v, %#v", testCase.desc, pod, err)
    					}
    					if errs := validation.ValidatePodCreate(internalPod, validation.PodValidationOptions{}); len(errs) > 0 {
    						t.Fatalf("%s: Invalid pod %#v, %#v", testCase.desc, internalPod, errs)
    					}
    				}
    				if !apiequality.Semantic.DeepEqual(testCase.expected, update) {
    					t.Fatalf("%s: Expected %#v, Got %#v", testCase.desc, testCase.expected, update)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/CharSourceTester.java

          CharSourceFactory factory, byte[] bytes, String name, String desc, boolean slice) {
        TestSuite suite = suiteForString(factory, new String(bytes, Charsets.UTF_8), name, desc);
        ByteSourceFactory byteSourceFactory = SourceSinkFactories.asByteSourceFactory(factory);
        suite.addTest(
            ByteSourceTester.suiteForBytes(
                byteSourceFactory, bytes, name + ".asByteSource[Charset]", desc, slice));
        return suite;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

          *this, "skip-quantization-ops",
          ::llvm::cl::desc("Skip quantization ops")};
    
      Option<bool> skip_resize_{
          *this, "skip-resize",
          ::llvm::cl::desc("Skip tf.ResizeBilinear and tf.ResizeNearestNeighbor")};
    
      Option<bool> skip_partitioned_calls_{
          *this, "skip-partitioned-calls",
          ::llvm::cl::desc(
              "Skip tf.StatefulPartitionedCall and tf.PartitionedCall")};
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/compress/lzw/reader_test.go

    			t.Errorf("%s: got %d-byte %q want %d-byte %q", tt.desc, n, s, len(tt.raw), tt.raw)
    		}
    	}
    }
    
    func TestReaderReset(t *testing.T) {
    	var b bytes.Buffer
    	for _, tt := range lzwTests {
    		d := strings.Split(tt.desc, ";")
    		var order Order
    		switch d[1] {
    		case "LSB":
    			order = LSB
    		case "MSB":
    			order = MSB
    		default:
    			t.Errorf("%s: bad order %q", tt.desc, d[1])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

            }
    
            @Override
            public MethodVisitor visitMethod(int access, final String name, final String desc, String signature, String[] exceptions) {
                return new MethodVisitor(AsmConstants.ASM_LEVEL, super.visitMethod(access, name, desc, signature, exceptions)) {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top