Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for allow_any (0.16 sec)

  1. src/database/sql/fakedb_test.go

    	}
    	c.db = nil
    	return nil
    }
    
    func checkSubsetTypes(allowAny bool, args []driver.NamedValue) error {
    	for _, arg := range args {
    		switch arg.Value.(type) {
    		case int64, float64, bool, nil, []byte, string, time.Time:
    		default:
    			if !allowAny {
    				return fmt.Errorf("fakedb: invalid argument ordinal %[1]d: %[2]v, type %[2]T", arg.Ordinal, arg.Value)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/traffic_allow_any_test.go

    				StatusCode:      http.StatusOK,
    				Protocol:        "TCP",
    			},
    		},
    	}
    
    	RunExternalRequest(t, cases, prom, AllowAny)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    )
    
    // Enum value maps for OutboundTrafficPolicyConfig_Mode.
    var (
    	OutboundTrafficPolicyConfig_Mode_name = map[int32]string{
    		0: "ALLOW_ANY",
    		1: "REGISTRY_ONLY",
    	}
    	OutboundTrafficPolicyConfig_Mode_value = map[string]int32{
    		"ALLOW_ANY":     0,
    		"REGISTRY_ONLY": 1,
    	}
    )
    
    func (x OutboundTrafficPolicyConfig_Mode) Enum() *OutboundTrafficPolicyConfig_Mode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. fastapi/params.py

                ge=ge,
                lt=lt,
                le=le,
                min_length=min_length,
                max_length=max_length,
                discriminator=discriminator,
                multiple_of=multiple_of,
                allow_nan=allow_inf_nan,
                max_digits=max_digits,
                decimal_places=decimal_places,
                **extra,
            )
            if examples is not None:
                kwargs["examples"] = examples
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Specifies the port on the host that is being addressed. properties: number: type: integer type: object subset: description: The name of a subset within the service. type: string required: - host type: object mode: enum: - REGISTRY_ONLY - ALLOW_ANY type: string type: object workloadSelector: description: Criteria used to select the specific set of pods/VMs on which this `Sidecar` configuration should be applied. properties: labels: additionalProperties: type: string description: One or more...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    			DNSDomain:               node.DNSDomain,
    			DNSCapture:              bool(node.Metadata.DNSCapture),
    			DNSAutoAllocate:         bool(node.Metadata.DNSAutoAllocate),
    			AllowAny:                util.IsAllowAnyOutbound(node),
    			ListenerPort:            listenerPort,
    			Services:                services,
    			VirtualServices:         virtualServices,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    type nvcDriver struct {
    	fakeDriver
    	skipNamedValueCheck bool
    }
    
    func (d *nvcDriver) Open(dsn string) (driver.Conn, error) {
    	c, err := d.fakeDriver.Open(dsn)
    	fc := c.(*fakeConn)
    	fc.db.allowAny = true
    	return &nvcConn{fc, d.skipNamedValueCheck}, err
    }
    
    type nvcConn struct {
    	*fakeConn
    	skipNamedValueCheck bool
    }
    
    type decimalInt struct {
    	value int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top