Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 301 for subreg (0.15 sec)

  1. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"address missing subnet range": {
    			addresses:    []string{"127.0.0.1/32", "10.20.30.40", "1.2.3.0/24"},
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("NodePortAddresses[1]"), "10.20.30.40", "must be a valid CIDR")},
    		},
    		"missing ipv6 subnet ranges": {
    			addresses: []string{"::0", "::1", "2001:db8::/32"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. cmd/config-current.go

    		config.HelpKV{
    			Key:         config.SubnetSubSys,
    			Type:        "string",
    			Description: "register the cluster to MinIO SUBNET",
    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         config.CallhomeSubSys,
    			Type:        "string",
    			Description: "enable callhome to MinIO SUBNET",
    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         config.DriveSubSys,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGZERO
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS32
    			if top == nil {
    				top = p
    			}
    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGTMP
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_VS33
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    
    			endpoints := &v1.Endpoints{Subsets: subsets}
    			truncateEndpoints(endpoints)
    
    			for i, subset := range endpoints.Subsets {
    				if len(subset.Addresses) != tc.expectedReady[i] {
    					t.Errorf("Unexpected number of actual ready Endpoints for subset %d: got %d endpoints, want %d endpoints", i, len(subset.Addresses), tc.expectedReady[i])
    				}
    				if len(subset.NotReadyAddresses) != tc.expectedNotReady[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
       *
       * <p>The {@link SortedSet#subSet} documentation states that a subset of a subset throws an {@link
       * IllegalArgumentException} if passed a {@code fromElement} smaller than an earlier {@code
       * fromElement}. However, this method doesn't throw an exception in that situation, but instead
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/README.md

    Trace tests can be generated by running
    
    ```
    go generate .
    ```
    
    with the relevant toolchain in this directory.
    
    This will put the tests into a `tests` directory where the trace reader
    tests will find them.
    
    A subset of tests can be regenerated by specifying a regexp pattern for
    the names of tests to generate in the `GOTRACETEST` environment
    variable.
    Test names are defined as the name of the `.go` file that generates the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. releasenotes/notes/fips.yaml

      enforcing TLS restriction for compliance with FIPS. When set to `fips-140-2`
      on the Istiod container, the Istio Proxy container, and all other Istio
      components, TLS version is restricted to v1.2, the cipher suites to a subset
      of `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES128-GCM-SHA256`,
      `ECDHE-ECDSA-AES256-GCM-SHA384`, `ECDHE-RSA-AES256-GCM-SHA384`, and ECDH
      curves to `P-256`. These restrictions apply on the following data paths:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/RegularImmutableSortedSet.java

     *
     * @author Hayward Chan
     */
    @ElementTypesAreNonnullByDefault
    final class RegularImmutableSortedSet<E> extends ImmutableSortedSet<E> {
    
      /** true if this set is a subset of another immutable sorted set. */
      final boolean isSubset;
    
      private @Nullable Comparator<E> unusedComparatorForSerialization;
      private @Nullable E unusedElementForSerialization;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/go/types/termlist.go

    // subsetOf reports whether xl ⊆ yl.
    func (xl termlist) subsetOf(yl termlist) bool {
    	if yl.isEmpty() {
    		return xl.isEmpty()
    	}
    
    	// each term x of xl must be a subset of yl
    	for _, x := range xl {
    		if !yl.supersetOf(x) {
    			return false // x is not a subset yl
    		}
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    }
    
    // AddSubsetToMetadata will insert the subset name supplied. This should be called after the initial
    // "istio" metadata has been created for the cluster. If the "istio" metadata field is not already
    // defined, the subset information will not be added (to prevent adding this information where not
    // needed). This is used for telemetry reporting.
    func AddSubsetToMetadata(md *core.Metadata, subset string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top