Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 860 for planes (0.1 sec)

  1. tensorflow/c/kernels.h

    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    // Interprets the named kernel construction attribute as string and
    // places it into *val. `val` must
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/wasm.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	wasm "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    )
    
    // ConstructVMConfig constructs a VM config.
    func ConstructVMConfig(name string) *wasm.PluginConfig_VmConfig {
    	return &wasm.PluginConfig_VmConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane_test.go

    			existingLabels: []string{""},
    			existingTaints: nil,
    			newTaints:      nil,
    			expectedPatch:  `{"metadata":{"labels":{"node-role.kubernetes.io/control-plane":"","node.kubernetes.io/exclude-from-external-load-balancers":""}}}`,
    		},
    		{
    			name: "control-plane taint missing",
    			existingLabels: []string{
    				kubeadmconstants.LabelNodeRoleControlPlane,
    				kubeadmconstants.LabelExcludeFromExternalLB,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 14:22:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/cluster_test.go

    					Data: map[string]string{},
    				},
    			},
    			expectedError: true,
    		},
    		{
    			name: "valid v1beta3 - new control plane == false", // InitConfiguration composed with data from different places, with also node specific information
    			staticPods: []testresources.FakeStaticPod{
    				{
    					NodeName:  nodeName,
    					Component: kubeadmconstants.KubeAPIServer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants.go

    	CertificateKeySize = 32
    
    	// LabelNodeRoleControlPlane specifies that a node hosts control-plane components
    	LabelNodeRoleControlPlane = "node-role.kubernetes.io/control-plane"
    
    	// LabelExcludeFromExternalLB can be set on a node to exclude it from external load balancers.
    	// This is added to control plane nodes to preserve backwards compatibility with a legacy behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. pkg/bootstrap/instance_test.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. pilot/pkg/xds/requestidextension/uuid_extension.go

    // limitations under the License.
    
    package requestidextension
    
    import (
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	uuid_extension "github.com/envoyproxy/go-control-plane/envoy/extensions/request_id/uuid/v3"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 22 16:43:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin.go

    package extension
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/configgen.go

    // limitations under the License.
    
    package core
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/config/xds/filter_types.go

    // when using them in the "typed_config" attributes.
    // The filter types are autogenerated by looking at all packages in go-control-plane
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top