Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 600 for translated (0.15 sec)

  1. pkg/volume/util/selinux.go

    // Real implementation of the interface.
    // On Linux with SELinux enabled it translates. Otherwise it always returns an empty string and no error.
    type translator struct{}
    
    var _ SELinuxLabelTranslator = &translator{}
    
    // NewSELinuxLabelTranslator returns new SELinuxLabelTranslator for the platform.
    func NewSELinuxLabelTranslator() SELinuxLabelTranslator {
    	return &translator{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    }
    
    // TODO(hinsu): Also fuse ops corresponding to SIGN_BIT fused
    // activation functions.
    // Currently we're not fusing tanh, sigmoid, hard_swish and other activations
    // those cannot be simply translated into clamping.
    foreach actFnPair = [[TFL_ReluOp, TFL_AF_Relu],
                         [TFL_Relu6Op, TFL_AF_Relu6],
                         [TFL_Relu1Op, TFL_AF_Relu1]] in {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. operator/pkg/controlplane/control_plane_test.go

    func TestNewIstioOperator(t *testing.T) {
    	coreComponentOptions := &component.Options{
    		InstallSpec: &v1alpha1.IstioOperatorSpec{},
    		Translator:  &translate.Translator{},
    	}
    	tests := []struct {
    		desc              string
    		inInstallSpec     *v1alpha1.IstioOperatorSpec
    		inTranslator      *translate.Translator
    		wantIstioOperator *IstioControlPlane
    		wantErr           error
    	}{
    		{
    			desc:          "core-components",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 02:36:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. pkg/volume/csimigration/plugin_manager.go

    }
    
    // TranslateInTreeSpecToCSI translates a volume spec (either PV or inline volume)
    // supported by an in-tree plugin to CSI
    func TranslateInTreeSpecToCSI(spec *volume.Spec, podNamespace string, translator InTreeToCSITranslator) (*volume.Spec, error) {
    	var csiPV *v1.PersistentVolume
    	var err error
    	inlineVolume := false
    	if spec.PersistentVolume != nil {
    		csiPV, err = translator.TranslateInTreePVToCSI(spec.PersistentVolume)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    // conflict with C symbols.
    char text[] = "text";
    char data[] = "data";
    char *ctext(void) { return text; }
    char *cdata(void) { return data; }
    
    // issue 8428
    // Cgo inconsistently translated zero size arrays.
    
    struct issue8428one {
    	char b;
    	char rest[];
    };
    
    struct issue8428two {
    	void *p;
    	char b;
    	char rest[0];
    	char pad;
    };
    
    struct issue8428three {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. operator/pkg/controlplane/control_plane.go

    func NewIstioControlPlane(
    	installSpec *v1alpha1.IstioOperatorSpec,
    	translator *translate.Translator,
    	filter []string,
    	ver *version.Info,
    ) (*IstioControlPlane, error) {
    	out := &IstioControlPlane{}
    	opts := &component.Options{
    		InstallSpec: installSpec,
    		Translator:  translator,
    		Filter:      sets.New(filter...),
    		Version:     ver,
    	}
    	for _, c := range name.AllCoreComponentNames {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    //
    // tf.RandomShuffle shuffles tensors along the first dimension. If the input
    // tensor's rank is 1, then it is translated into HLO sort op(s) according to
    // indices randomly generated via HLO rng_uniform ops. Otherwise, it is
    // translated into an HLO while op to first emulate shuffling indices using
    // HLO dynamic_slice and dynamic_update_slice ops, then finally HLO gather
    // with the shuffled indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BitRev64 ...) => (RBIT ...)
    (BitRev32 ...) => (RBITW ...)
    (BitRev16   x) => (SRLconst [48] (RBIT <typ.UInt64> x))
    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			},
    		}
    	})
    	// No event since workload policy should still be there (both workloads' policy references remain the same).
    	// Since PeerAuthentications are translated into DENY policies we can safely apply them
    	// alongside ALLOW authorization policies
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. operator/pkg/component/component.go

    // Options defines options for a component.
    type Options struct {
    	// installSpec is the global IstioOperatorSpec.
    	InstallSpec *v1alpha1.IstioOperatorSpec
    	// translator is the translator for this component.
    	Translator *translate.Translator
    	// Namespace is the namespace for this component.
    	Namespace string
    	// Filter is the filenames to render
    	Filter sets.String
    	// Version is the Kubernetes version information.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top