Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for meth (0.25 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	configs := []config.Config{}
    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    				Name:             "default",
    			},
    			Spec: c.sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    					},
    				},
    			},
    		},
    	}
    	virtualService := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "virtual-service",
    			Namespace:        "default",
    		},
    		Spec: virtualServiceSpec,
    	}
    	virtualServiceCaseInsensitive := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    		name           string
    		clusterName    string
    		port           *model.Port
    		mesh           *meshconfig.MeshConfig
    		connectionPool *networking.ConnectionPoolSettings
    
    		upgrade bool
    	}{
    		{
    			name:        "mesh upgrade - dr default",
    			clusterName: "bar",
    			port:        &model.Port{Protocol: protocol.HTTP},
    			mesh:        &meshconfig.MeshConfig{H2UpgradePolicy: meshconfig.MeshConfig_UPGRADE},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    				bms.ObjectLockConfig = &objLockStr
    				bms.ObjectLockConfigUpdatedAt = meta.ObjectLockConfigUpdatedAt
    			}
    
    			if len(meta.QuotaConfigJSON) > 0 {
    				quotaConfigStr := base64.StdEncoding.EncodeToString(meta.QuotaConfigJSON)
    				bms.QuotaConfig = &quotaConfigStr
    				bms.QuotaConfigUpdatedAt = meta.QuotaConfigUpdatedAt
    			}
    
    			if len(meta.EncryptionConfigXML) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    			continue
    		}
    		meta[k] = v
    	}
    
    	if oi.ContentEncoding != "" {
    		meta[xhttp.ContentEncoding] = oi.ContentEncoding
    	}
    
    	if oi.ContentType != "" {
    		meta[xhttp.ContentType] = oi.ContentType
    	}
    
    	meta[xhttp.AmzObjectTagging] = oi.UserTags
    	meta[xhttp.AmzTagDirective] = "REPLACE"
    
    	if sc == "" {
    		sc = oi.StorageClass
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less32 x (Const32 <t> [math.MinInt32+1])) => (Eq32 x (Const32 <t> [math.MinInt32]))
    (Less16 x (Const16 <t> [math.MinInt16+1])) => (Eq16 x (Const16 <t> [math.MinInt16]))
    (Less8  x (Const8  <t> [math.MinInt8 +1])) => (Eq8  x (Const8  <t> [math.MinInt8 ]))
    (Less64 (Const64 <t> [math.MaxInt64-1]) x) => (Eq64 x (Const64 <t> [math.MaxInt64]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy nodeport-endpoints-check ip daddr @nodeport-ips meta l4proto . th dport vmap @no-endpoint-nodeports
    		add rule ip kube-proxy reject-chain reject
    		add rule ip kube-proxy services ip daddr . meta l4proto . th dport vmap @service-ips
    		add rule ip kube-proxy services ip daddr @nodeport-ips meta l4proto . th dport vmap @service-nodeports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    				},
    			},
    			"partial wildcard \"*bar.com\" not allowed", "",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			warn, err := ValidateGateway(config.Config{
    				Meta: config.Meta{
    					Name:      someName,
    					Namespace: someNamespace,
    				},
    				Spec: tt.in,
    			})
    			checkValidationMessage(t, warn, err, tt.warning, tt.out)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    // for a particular test binary is followed by a space and the name of
    // the test binary in brackets, as in "math/rand [math/rand.test]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj:    objs(math.MaxInt64, math.MaxInt64, math.MaxInt32, math.MaxInt32, math.MaxInt64, math.MaxInt64),
    			schema: schemas(integerType, integerType, int32Type, int32Type, int64Type, int64Type),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", fmt.Sprintf("%d", math.MaxInt64)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top