Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 272 for mod$ (0.05 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    	if t, ok := x.typ.(*Tuple); ok && x.mode != invalid {
    		// multiple values
    		list = make([]*operand, t.Len())
    		for i, v := range t.vars {
    			list[i] = &operand{mode: value, expr: e, typ: v.typ}
    		}
    		return
    	}
    
    	// exactly one (possibly invalid or comma-ok) value
    	list = []*operand{&x}
    	if allowCommaOk && (x.mode == mapindex || x.mode == commaok || x.mode == commaerr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_tls_test.go

    		enableVerifyCertAtClient bool
    	}{
    		{
    			name: "tls mode disabled",
    			opts: &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					Name: "test-cluster",
    				}),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode: networking.ClientTLSSettings_DISABLE,
    			},
    			result: expectedResult{nil, nil},
    		},
    		{
    			name: "tls mode ISTIO_MUTUAL",
    			opts: &buildClusterOpts{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier_test.go

    		},
    		{
    			name: "Single policy - disable mode",
    			peerPolicies: []*config.Config{
    				{
    					Spec: &v1beta1.PeerAuthentication{
    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_DISABLE,
    						},
    					},
    				},
    			},
    			expected: MTLSSettings{Port: 8080, Mode: model.MTLSDisable},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    	if t, ok := x.typ.(*Tuple); ok && x.mode != invalid {
    		// multiple values
    		list = make([]*operand, t.Len())
    		for i, v := range t.vars {
    			list[i] = &operand{mode: value, expr: e, typ: v.typ}
    		}
    		return
    	}
    
    	// exactly one (possibly invalid or comma-ok) value
    	list = []*operand{&x}
    	if allowCommaOk && (x.mode == mapindex || x.mode == commaok || x.mode == commaerr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	run(t, func(t *testing.T, mode testMode) {
    		testRedirectsByMethod(t, mode, "DELETE", deleteRedirectTests, want)
    	})
    }
    
    func testRedirectsByMethod(t *testing.T, mode testMode, method string, table []redirectTest, want string) {
    	var log struct {
    		sync.Mutex
    		bytes.Buffer
    	}
    	var ts *httptest.Server
    	ts = newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    func TestFileServerNotDirError(t *testing.T) {
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("Dir", func(t *testing.T) {
    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return Dir(path) })
    		})
    		t.Run("FS", func(t *testing.T) {
    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return FS(os.DirFS(path)) })
    		})
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	}
    	if fi.Mode()&ModeDevice == 0 {
    		t.Errorf(pre+"wrong file mode %q: ModeDevice is not set", fi.Mode())
    	}
    	if fi.Mode()&ModeCharDevice == 0 {
    		t.Errorf(pre+"wrong file mode %q: ModeCharDevice is not set", fi.Mode())
    	}
    	if fi.Mode().IsRegular() {
    		t.Errorf(pre+"wrong file mode %q: IsRegular returns true", fi.Mode())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    			z := zbits.Float()
    
    			for i, mode := range [...]RoundingMode{ToZero, ToNearestEven, AwayFromZero} {
    				for _, prec := range precList {
    					got := new(Float).SetPrec(prec).SetMode(mode)
    					got.Add(x, y)
    					want := zbits.round(prec, mode)
    					if got.Cmp(want) != 0 {
    						t.Errorf("i = %d, prec = %d, %s:\n\t     %s %v\n\t+    %s %v\n\t=    %s\n\twant %s",
    							i, prec, mode, x, xbits, y, ybits, got, want)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top