Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for rulesv4 (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.setNullableStr) != null_type",
    
    				// a field that is set to null is treated the same as an absent field in validation rules
    				"!has(self.setToNullNullableStr)",
    			},
    			errors: map[string]string{
    				// the types used in validation rules don't integrate with CEL's Null type, so
    				// all attempts to compare values with null are caught by the type checker at compilation time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    function config-ip-firewall {
      echo "Configuring IP firewall rules"
    
      # Do not consider loopback addresses as martian source or destination while
      # routing. This enables the use of 127/8 for local routing purposes.
      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.tasks.rules.JacocoLimit.getCounter()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoLimit.java:0)
    Method <org.gradle.testing.jacoco.tasks.rules.JacocoLimit.getMaximum()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoLimit.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func formatHosts(rules []networking.IngressRule) string {
    	list := []string{}
    	max := 3
    	more := false
    	for _, rule := range rules {
    		if len(list) == max {
    			more = true
    		}
    		if !more && len(rule.Host) != 0 {
    			list = append(list, rule.Host)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    	fp.OnEndpointSliceUpdate(eps3update3, eps3update2)
    	fp.syncProxyRules()
    	// The second change counteracts the first one, so same expected rules as last time
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    
    	// Sync with no new changes, so same expected rules as last time
    	fp.syncProxyRules()
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    				"outbound|8080||*.example.org": basicSettings,
    				"inbound|10001||":              overrideSettings,
    				"inbound|10002||":              overrideSettings,
    			},
    		},
    		"sidecar per-port rules override top-level rules": {
    			destrule: &networking.DestinationRule{
    				Host: "*.example.org",
    			},
    			sidecar: &networking.Sidecar{
    				InboundConnectionPool: basicSettings,
    				Ingress: []*networking.IstioIngressListener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

      |   what is allowed in the field.
      |
      | o validators: there could be several levels of validation. Simple type validation could
      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		}
    		return perr
    	}
    
    	return nil
    }
    
    // disallowVendorVisibility checks that srcDir is allowed to import p.
    // The rules are the same as for /internal/ except that a path ending in /vendor
    // is not subject to the rules, only subdirectories of vendor.
    // This allows people to have packages and commands named vendor,
    // for maximal compatibility with existing source trees.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			}`, valid.Unix()),
    			wantErr: `oidc: verify token: oidc: expected audience in ["my-client" "random-client"] got ["not-my-client"]`,
    		},
    		{
    			name: "nuanced audience validation using claim validation rules",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:                 "https://auth.example.com",
    						Audiences:           []string{"bar", "foo", "baz"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    //	//go:build
    //
    // Constraints may appear in any kind of source file (not just Go), but
    // they must appear near the top of the file, preceded
    // only by blank lines and other comments. These rules mean that in Go
    // files a build constraint must appear before the package clause.
    //
    // To distinguish build constraints from package documentation,
    // a build constraint should be followed by a blank line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top