Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for mcsapi (0.14 sec)

  1. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    		// manually create serviceexport
    		export := mcsapi.ServiceExport{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "ServiceExport",
    				APIVersion: features.MCSAPIVersion,
    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: "exportable-ns",
    				Name:      "manual-export",
    			},
    			Status: mcsapi.ServiceExportStatus{
    				Conditions: []mcsapi.ServiceExportCondition{
    					{
    						Type: mcsapi.ServiceExportValid,
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    }
    
    func newServiceImport(importType mcsapi.ServiceImportType, vips []string) *unstructured.Unstructured {
    	si := &mcsapi.ServiceImport{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "ServiceImport",
    			APIVersion: "multicluster.x-k8s.io/v1alpha1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      serviceImportName,
    			Namespace: serviceImportNamespace,
    		},
    		Spec: mcsapi.ServiceImportSpec{
    			Type: importType,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		return err
    	}
    
    	// Convert the ports for the ServiceImport.
    	ports := make([]mcsapi.ServicePort, len(svc.Spec.Ports))
    	for i, p := range svc.Spec.Ports {
    		ports[i] = mcsapi.ServicePort{
    			Name:        p.Name,
    			Protocol:    p.Protocol,
    			Port:        p.Port,
    			AppProtocol: p.AppProtocol,
    		}
    	}
    
    	serviceImport := &mcsapi.ServiceImport{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "ServiceImport",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/model"
    	serviceRegistryKube "istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    import (
    	"context"
    	"fmt"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.h

    #ifndef TENSORFLOW_C_EAGER_C_API_H_
    #define TENSORFLOW_C_EAGER_C_API_H_
    
    // C API extensions to experiment with eager execution of kernels.
    // WARNING: Unlike tensorflow/c/c_api.h, the API here is not guaranteed to be
    // stable and can change without notice.
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_macros.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct TFE_ContextOptions TFE_ContextOptions;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/next_pluggable_device/c_api.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/experimental/next_pluggable_device/c_api.h"
    
    #include <cstdint>
    #include <cstdlib>
    #include <memory>
    #include <string>
    #include <string_view>
    #include <utility>
    #include <vector>
    
    #include "absl/status/status.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api.cc

    ==============================================================================*/
    
    #include "tensorflow/c/eager/c_api.h"
    
    #include <algorithm>
    #include <cstddef>
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/memory/memory.h"
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/c_api.h"
    
    #include <algorithm>
    #include <cstring>
    #include <limits>
    #include <memory>
    #include <optional>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/strings/match.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/next_pluggable_device/c_api.h

    A. Unique TensorFlower <******@****.***> 1703101604 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top