Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for desc3 (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/util/util_test.go

    	}
    }
    
    func TestFsUserFrom(t *testing.T) {
    	tests := []struct {
    		desc       string
    		pod        *v1.Pod
    		wantFsUser *int64
    	}{
    		{
    			desc: "no runAsUser specified",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{},
    			},
    			wantFsUser: nil,
    		},
    		{
    			desc: "some have runAsUser specified",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gccgo.go

    				// forward the _cgo_flags directly to this step.
    				return "", nil
    			}
    		}
    		err := sh.run(root.Objdir, desc, nil, tools.ar(), arArgs, "x", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    		err = sh.run(".", desc, nil, tools.ar(), arArgs, "d", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            configurationContainer.newConf.is(configuration)
        }
    
        def addsNewConfigurationWithClosureWhenConfiguringSelf() {
            when:
            String someDesc = 'desc1'
            configurationContainer.configure {
                newConf {
                    description = someDesc
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    			server:       mockTokenCAServer{Certs: nil},
    			expectedCert: nil,
    			expectedErr:  "rpc error: code = Unknown desc = no HTTP authorization header exists",
    			token:        "",
    		},
    		"InValid Token": {
    			server:       mockTokenCAServer{Certs: []string{}},
    			expectedCert: nil,
    			expectedErr:  "rpc error: code = Unknown desc = token is not valid",
    			token:        fakeToken,
    		},
    	}
    
    	for id, tc := range testCases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. cmd/metrics.go

    	return &minioCollector{
    		desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    // minioCollector is the Custom Collector
    type minioCollector struct {
    	desc *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top