Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for desc1 (0.05 sec)

  1. pkg/scheduler/framework/types_test.go

    	tests := []struct {
    		desc   string
    		added  []hostPortInfoParam
    		check  hostPortInfoParam
    		expect bool
    	}{
    		{
    			desc: "empty check should check 0.0.0.0 and TCP",
    			added: []hostPortInfoParam{
    				{"TCP", "127.0.0.1", 80},
    			},
    			check:  hostPortInfoParam{"", "", 81},
    			expect: false,
    		},
    		{
    			desc: "empty check should check 0.0.0.0 and TCP (conflicted)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                if (((access & PUBLIC_STATIC_FINAL) == PUBLIC_STATIC_FINAL) && Type.getDescriptor(String.class).equals(desc)) {
                    missingStaticStringConstantGetters.put("get" + name, name);
                }
                if (((access & Opcodes.ACC_PRIVATE) > 0) && !isStatic(access) && Type.getDescriptor(boolean.class).equals(desc)) {
                    booleanFields.add(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        this?.any { it.desc == annotationTypeDescriptor } ?: false
    
    
    private
    class ApiTypeClassNode(asmLevel: Int) : ClassNode(asmLevel) {
    
        override fun visitSource(file: String?, debug: String?) = Unit
        override fun visitOuterClass(owner: String?, name: String?, desc: String?) = Unit
        override fun visitTypeAnnotation(typeRef: Int, typePath: TypePath?, desc: String?, visible: Boolean): AnnotationVisitor? = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    			Code:           "XMinioStorageVersionMismatch",
    			Description:    desc,
    			HTTPStatusCode: http.StatusUpgradeRequired,
    		}, r.URL)
    	case strings.HasPrefix(r.URL.Path, adminPathPrefix):
    		var desc string
    		version := extractAPIVersion(r)
    		switch version {
    		case "v1", madmin.AdminAPIVersionV2:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    		"-j", ChainInpodOutput,
    	)
    
    	// From here on, we should be only inserting rules into our custom chains.
    
    	// CLI: -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager_test.go

    		t.Error(err)
    	}
    
    	testCases := []struct {
    		desc                    string
    		probePaths              []probeKey
    		enableSidecarContainers bool
    	}{
    		{
    			desc:                    "pod with sidecar (no sidecar containers feature enabled)",
    			probePaths:              nil,
    			enableSidecarContainers: false,
    		},
    		{
    			desc: "pod with sidecar (sidecar containers feature enabled)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    		}
    
    		cases := []struct {
    			desc        string
    			obj         runtime.Object
    			expectedErr bool
    			expected    outputapiv1alpha3.ComponentConfigVersionState
    		}{
    			{
    				desc:     "appropriate cluster object",
    				obj:      testClusterConfigMap(currentFooClusterConfig, false),
    				expected: versionStateCurrent,
    			},
    			{
    				desc:        "old config returns an error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    		}
    	}
    
    	for _, tt := range []struct {
    		desc string
    		v    *opconfig.Values
    		pc   *proxyConfig.ProxyImage
    		ann  map[string]string
    		want string
    	}{
    		{
    			desc: "vals-only-int-tag",
    			v:    val("docker.io/istio", 11),
    			want: "docker.io/istio/proxyv2:11",
    		},
    		{
    			desc: "pc overrides imageType - float tag",
    			v:    val("docker.io/istio", 1.12),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    				},
    			},
    		},
    	} {
    		t.Run(desc, func(t *testing.T) {
    			if test.skipOnWindows && goruntime.GOOS == "windows" {
    				// TODO: remove skip once the failing test has been fixed.
    				t.Skip("Skip failing test on Windows.")
    			}
    			actual := toKubeContainerStatus(test.input, cid.Type)
    			assert.Equal(t, test.expected, actual, desc)
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	succeeded := false
    	desc := le.config.Lock.Describe()
    	klog.Infof("attempting to acquire leader lease %v...", desc)
    	wait.JitterUntil(func() {
    		succeeded = le.tryAcquireOrRenew(ctx)
    		le.maybeReportTransition()
    		if !succeeded {
    			klog.V(4).Infof("failed to acquire lease %v", desc)
    			return
    		}
    		le.config.Lock.RecordEvent("became leader")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top