Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for rulesv6 (1.86 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // K8s annotations for the service account
      google.protobuf.Struct serviceAccountAnnotations = 56;
    
      // ConfigSource describes a source of configuration data for networking
      // rules, and other Istio configuration artifacts. Multiple data sources
      // can be configured for a single control plane.
      PilotConfigSource configSource = 31;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// Constant flag value.
    		// Note: there's an "unordered" outcome for floating-point
    		// comparisons, but we don't use such a beast yet.
    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Does the same for the `myNullableProperty` project property, but the build won't fail on using the `myNullableProperty` value as long as you check for null (standard https://kotlinlang.org/docs/reference/null-safety.html[Kotlin rules for null safety] apply)
    
    The same approach works in both settings and initialization scripts, except you use `by settings` and `by gradle` respectively in place of `by project`.
    
    === Extra properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.addPolicy(t, selectorPolicyName, testNS, map[string]string{"app": "a"}, gvk.AuthorizationPolicy, func(c controllers.Object) {
    		pol := c.(*clientsecurityv1beta1.AuthorizationPolicy)
    		pol.Spec.Rules = []*auth.Rule{
    			{
    				From: []*auth.Rule_From{{Source: &auth.Source{Principals: []string{"cluster.local/ns/ns1/sa/sa1"}}}},
    			},
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. src/runtime/map.go

    const (
    	// Maximum number of key/elem pairs a bucket can hold.
    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    	// Because of minimum alignment rules, bucketCnt is known to be at least 8.
    	// Represent as loadFactorNum/loadFactorDen, to allow integer math.
    	loadFactorDen = 2
    	loadFactorNum = loadFactorDen * abi.MapBucketCount * 13 / 16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Converts a tensor to a scalar predicate.";
    
      let description = [{
    Converts a tensor to a scalar predicate with the following rules:
    
    - For 0D tensors, truthiness is determined by comparing against a "zero"
      value. For numerical types it is the obvious zero. For strings it is the
      empty string.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.AuthorizationPolicy},
    		Spec: &security.AuthorizationPolicy{
    			Selector:     nil,
    			TargetRef:    nil,
    			Rules:        nil,
    			Action:       security.AuthorizationPolicy_CUSTOM,
    			ActionDetail: &security.AuthorizationPolicy_Provider{Provider: &security.AuthorizationPolicy_ExtensionProvider{Name: "extauthz"}},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. src/os/os_test.go

    // Test that simultaneous RemoveAll do not report an error.
    // As long as it gets removed, we should be happy.
    func TestRemoveAllRace(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		// Windows has very strict rules about things like
    		// removing directories while someone else has
    		// them open. The racing doesn't work out nicely
    		// like it does on Unix.
    		t.Skip("skipping on windows")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top