Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 540 for desc3 (0.1 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            @Override
            public void visitOuterClass(String owner, String name, String desc) {
                super.visitOuterClass(remap(owner), remap(name), remap(desc));
            }
    
            @Override
            public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                return super.visitAnnotation(remap(desc), visible);
            }
    
            class MethodRenamer extends MethodVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/wasmplugin_test.go

    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    				desc:            "initial creation with 0.0.1",
    				name:            "wasm-test-module",
    				tag:             tag,
    				policy:          "",
    				upstreamVersion: "0.0.1",
    				expectedVersion: "0.0.1",
    			})
    
    			resetWasm(t, "wasm-test-module")
    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. pkg/log/scope_test.go

    	}
    }
    
    func TestScopeEnabled(t *testing.T) {
    	const name = "TestEnabled"
    	const desc = "Desc"
    	s := RegisterScope(name, desc)
    
    	if n := s.Name(); n != name {
    		t.Errorf("Got %s, expected %s", n, name)
    	}
    
    	if d := s.Description(); d != desc {
    		t.Errorf("Got %s, expected %s", d, desc)
    	}
    
    	cases := []struct {
    		level        Level
    		debugEnabled bool
    		infoEnabled  bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/transformer_test.go

    	otherTransformerErr := PrefixTransformer{Prefix: []byte("other:"), Transformer: &testTransformer{err: transformerErr}}
    
    	testCases := []struct {
    		desc    string
    		input   []byte
    		prefix  Transformer
    		metrics []string
    		want    string
    		err     error
    	}{
    		{
    			desc:   "identity prefix",
    			input:  []byte("value"),
    			prefix: NewPrefixTransformers(testErr, identityTransformer, otherTransformer),
    			metrics: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

        schema: V1_SCHEMA
    `
    
    	type Test struct {
    		desc                                  string
    		preserveUnknownFields                 string
    		globalSchema, v1Schema, v1beta1Schema string
    		expectedViolations                    []string
    		unexpectedViolations                  []string
    	}
    	tests := []Test{
    		{
    			desc: "empty",
    			expectedViolations: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/util/util_test.go

    )
    
    type vaTest struct {
    	desc                 string
    	createNodeName       kubetypes.NodeName
    	pod                  *v1.Pod
    	wantVolume           *v1.Volume
    	wantPersistentVolume *v1.PersistentVolume
    	wantErrorMessage     string
    }
    
    func Test_CreateVolumeSpec(t *testing.T) {
    	for _, test := range []vaTest{
    		{
    			desc:           "inline volume type that does not support csi migration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads_test.go

    		unexpectedUpdates []string
    	}
    	svcCases := []svcCase{
    		{
    			desc:            "Add a scoped service",
    			ev:              model.EventAdd,
    			svcIndexes:      []int{4},
    			ns:              testConfigNamespace,
    			expectedUpdates: []string{v3.ListenerType},
    		}, // then: default 1,2,3,4
    		{
    			desc: "Add instances to a scoped service",
    			ev:   model.EventAdd,
    			instIndexes: []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/mirror_client_test.go

    		testPodNS    = "test-pod-ns"
    		testPodHash  = "123456789"
    	)
    	testcases := []struct {
    		desc          string
    		node          *v1.Node
    		nodeErr       error
    		expectSuccess bool
    	}{{
    		desc:          "cannot get node",
    		nodeErr:       errors.New("expected: cannot get node"),
    		expectSuccess: false,
    	}, {
    		desc: "node missing UID",
    		node: &v1.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: testNodeName,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics_test.go

    		"apiserver_validating_admission_policy_check_total",
    		"apiserver_validating_admission_policy_check_duration_seconds",
    	}
    
    	testCases := []struct {
    		desc     string
    		want     string
    		observer metricsObserver
    	}{
    		{
    			desc: "observe policy admission",
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/flag/flag_test.go

    	}
    	opts := Options{
    		B: "b-def",
    	}
    	test.SetEnvForTest(t, "TEST_ENV", "from-env")
    	fs := pflag.NewFlagSet("test", pflag.ContinueOnError)
    	Bind(fs, "a", "", "desc", &opts.A)
    	Bind(fs, "bool", "", "desc", &opts.Bool)
    	BindEnv(fs, "test-env", "", "desc", &opts.Env)
    	fs.Set("a", "a-set")
    	fs.Set("bool", "true")
    	assert.Equal(t, opts, Options{
    		A:    "a-set",
    		B:    "b-def",
    		Env:  "from-env",
    		Bool: true,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top