Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 406 for binversion (0.23 sec)

  1. istioctl/pkg/util/common.go

    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	binversion "istio.io/istio/operator/version"
    )
    
    var NeverMatch = &metav1.LabelSelector{
    	MatchLabels: map[string]string{
    		"istio.io/deactivated": "never-match",
    	},
    }
    
    var ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles
    (e.g. ~/Downloads/istio-` + binversion.OperatorVersionString + `/manifests).`
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh.go

    // limitations under the License.
    
    package main
    
    import (
    	"os"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/cmd/mesh"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/version"
    )
    
    func main() {
    	version.Info.Version = binversion.OperatorVersionString
    	rootCmd := mesh.GetRootCmd(cli.NewCLIContext(nil), os.Args[1:])
    	if err := rootCmd.Execute(); err != nil {
    		os.Exit(1)
    	}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Aug 29 14:15:33 GMT 2023
    - 963 bytes
    - Viewed (0)
  3. operator/cmd/mesh/root.go

    // limitations under the License.
    
    package mesh
    
    import (
    	"flag"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/url"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    	baseVersion    = binversion.OperatorVersionString
    	setFlagHelpStr = `Override an IstioOperator value, e.g. to choose a profile
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/c/conversion_macros.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_CONVERSION_MACROS_H_
    #define TENSORFLOW_C_CONVERSION_MACROS_H_
    
    #define DEFINE_CONVERSION_FUNCTIONS(cpp_impl, wrapper)                         \
      inline cpp_impl *unwrap(wrapper *w) {                                        \
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon May 04 16:24:03 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/templates/configmap-cni.yaml

    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: istio-cni-config
      namespace: {{ .Release.Namespace }}
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tfe_cancellation_manager_internal.h

    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/core/framework/cancellation.h"
    
    struct TFE_CancellationManager;
    typedef struct TFE_CancellationManager TFE_CancellationManager;
    
    namespace tensorflow {
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::CancellationManager,
                                TFE_CancellationManager);
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::CancellationManager*,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 02 18:56:02 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  7. tests/test_starlette_urlconvertors.py

    client = TestClient(app)
    
    
    def test_route_converters_int():
        # Test integer conversion
        response = client.get("/int/5")
        assert response.status_code == 200, response.text
        assert response.json() == {"int": 5}
        assert app.url_path_for("int_convertor", param=5) == "/int/5"  # type: ignore
    
    
    def test_route_converters_float():
        # Test float conversion
        response = client.get("/float/25.5")
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Nov 27 14:46:06 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  8. istioctl/pkg/install/k8sversion/version_test.go

    		Major:      "1",
    		Minor:      "17",
    		GitVersion: "1.17",
    	}
    	version1_8 = &version.Info{
    		Major:      "1",
    		Minor:      "8",
    		GitVersion: "v1.8",
    	}
    	version1_18 = &version.Info{
    		Major:      "1",
    		Minor:      "18",
    		GitVersion: "v1.18.5",
    	}
    	version1_19 = &version.Info{
    		Major:      "1",
    		Minor:      "19",
    		GitVersion: "v1.19.4",
    	}
    	version1_20 = &version.Info{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 19 02:46:48 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/tfe_context_internal.h

    ==============================================================================*/
    #ifndef TENSORFLOW_C_EAGER_TFE_CONTEXT_INTERNAL_H_
    #define TENSORFLOW_C_EAGER_TFE_CONTEXT_INTERNAL_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/eager/immediate_execution_context.h"
    
    // Wraps a pointer to a context implementation.
    //
    // WARNING: Since the underlying object could be ref-counted a user of this
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Jun 17 19:39:13 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_unified_experimental_internal.h

    }  // namespace tracing
    
    DEFINE_CONVERSION_FUNCTIONS(AbstractContext, TF_ExecutionContext)
    DEFINE_CONVERSION_FUNCTIONS(AbstractTensorHandle, TF_AbstractTensor)
    DEFINE_CONVERSION_FUNCTIONS(AbstractFunction, TF_AbstractFunction)
    DEFINE_CONVERSION_FUNCTIONS(AbstractOperation, TF_AbstractOp)
    DEFINE_CONVERSION_FUNCTIONS(OutputList, TF_OutputList)
    }  // namespace tensorflow
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Nov 13 22:20:40 GMT 2020
    - 5.2K bytes
    - Viewed (0)
Back to top