Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 170 for vols (0.04 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.index_lang	=	Langues préférées
    labels.index_sort	=	Trier
    labels.index_num	=	résultats par page
    labels.logout_title	=	Se déconnecter
    labels.logout	=	Se déconnecter
    labels.do_you_want_to_logout	=	Voulez-vous vous déconnecter ?
    labels.logout_button	=	Se déconnecter
    labels.profile	=	Changer le mot de passe
    labels.administration	=	Administration
    labels.profile_button	=	Profil
    labels.profile.title	=	Profil
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/testing/internal/testdeps/deps.go

    	return err
    }
    
    func (TestDeps) ReadCorpus(dir string, types []reflect.Type) ([]fuzz.CorpusEntry, error) {
    	return fuzz.ReadCorpus(dir, types)
    }
    
    func (TestDeps) CheckCorpus(vals []any, types []reflect.Type) error {
    	return fuzz.CheckCorpus(vals, types)
    }
    
    func (TestDeps) ResetCoverage() {
    	fuzz.ResetCoverage()
    }
    
    func (TestDeps) SnapshotCoverage() {
    	fuzz.SnapshotCoverage()
    }
    
    var CoverMode string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    	}
    	for _, req := range reqs {
    		var op LabelSelectorOperator
    		switch req.Operator() {
    		case selection.Equals, selection.DoubleEquals:
    			vals := req.Values()
    			if vals.Len() != 1 {
    				return nil, fmt.Errorf("equals operator must have exactly one value")
    			}
    			val, ok := vals.PopAny()
    			if !ok {
    				return nil, fmt.Errorf("equals operator has exactly one value but it cannot be retrieved")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-init.go

    	}
    
    	l.LogAndPrintf("Operator controller will watch namespaces: %s", oiArgs.common.watchedNamespaces)
    
    	vals, mstr, err := renderOperatorManifest(args, &oiArgs.common)
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    
    	installerScope.Debugf("Installing operator charts with the following values:\n%s", vals)
    	installerScope.Debugf("Using the following manifest to install operator:\n%s\n", mstr)
    
    	opts := &applyOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path_test.go

    	plug, err := plugMgr.FindPluginByName(hostPathPluginName)
    	if err != nil {
    		t.Fatal("Can't find the plugin by name")
    	}
    
    	volPath := "/tmp/vol1"
    	spec := &v1.Volume{
    		Name:         "vol1",
    		VolumeSource: v1.VolumeSource{HostPath: &v1.HostPathVolumeSource{Path: volPath, Type: newHostPathType(string(v1.HostPathDirectoryOrCreate))}},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    type Map struct {
    	Vals         map[ssa.ID]objw.StackMapIndex
    	UnsafeVals   map[ssa.ID]bool
    	UnsafeBlocks map[ssa.ID]bool
    	// The set of live, pointer-containing variables at the DeferReturn
    	// call (only set when open-coded defers are used).
    	DeferReturn objw.StackMapIndex
    }
    
    func (m *Map) reset() {
    	if m.Vals == nil {
    		m.Vals = make(map[ssa.ID]objw.StackMapIndex)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. operator/pkg/helm/helm.go

    	caps.KubeVersion = *operatorVersion
    
    	if version != nil {
    		caps.KubeVersion = chartutil.KubeVersion{
    			Version: version.GitVersion,
    			Major:   version.Major,
    			Minor:   version.Minor,
    		}
    	}
    	vals, err := chartutil.ToRenderValues(chrt, valuesMap, options, &caps)
    	if err != nil {
    		return "", err
    	}
    
    	if filterFunc != nil {
    		filteredTemplates := []*chart.File{}
    		for _, t := range chrt.Templates {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_experimental.h

                                                 TF_Status* status);
    
    // Interprets the named kernel construction attribute as a shape attribute and
    // fills in `vals` with the size of each dimension. `vals` must point to an
    // array of length at least `max_values` (ideally set to total_size from
    // TF_OpKernelConstruction_GetAttrSize(ctx, attr_name, &list_size,
    // &total_size)).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/server.go

    	options.AddCustomGlobalFlags(namedFlagSets.FlagSet("generic"))
    	for _, f := range namedFlagSets.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	cols, _, _ := term.TerminalSize(cmd.OutOrStdout())
    	cliflag.SetUsageAndHelpFunc(cmd, namedFlagSets, cols)
    
    	return cmd
    }
    
    // Run runs the specified APIServer.  This should never exit.
    func Run(ctx context.Context, opts options.CompletedOptions) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/codenarc_plugin.adoc

    
    [[sec:codenarc_dependency_management]]
    == Dependency management
    
    The CodeNarc plugin adds the following dependency configurations:
    
    .CodeNarc plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `codenarc`
    | The CodeNarc libraries to use
    |===
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 12:08:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top