Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for vols (0.11 sec)

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

    	return serviceClusterSetLocalHostname(config.NamespacedName(obj))
    }
    
    func labelRequirement(key string, op selection.Operator, vals []string, opts ...field.PathOption) *klabels.Requirement {
    	out, err := klabels.NewRequirement(key, op, vals, opts...)
    	if err != nil {
    		panic(fmt.Sprintf("failed creating requirements for Service: %v", err))
    	}
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/hu/stopwords.txt

    tehát
    teljes
    tovább
    továbbá
    több
    úgy
    ugyanis
    új
    újabb
    újra
    után
    utána
    utolsó
    vagy
    vagyis
    valaki
    valami
    valamint
    való
    vagyok
    van
    vannak
    volt
    voltam
    voltak
    voltunk
    vissza
    vele
    viszont
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/fuzz/encoding_test.go

    	}
    	for _, test := range tests {
    		t.Run(test.desc, func(t *testing.T) {
    			vals, err := unmarshalCorpusFile([]byte(test.in))
    			if test.reject {
    				if err == nil {
    					t.Fatalf("unmarshal unexpected success")
    				}
    				return
    			}
    			if err != nil {
    				t.Fatalf("unmarshal unexpected error: %v", err)
    			}
    			newB := marshalCorpusFile(vals...)
    			if newB[len(newB)-1] != '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/net/tcpsockopt_windows.go

    	"os"
    	"runtime"
    	"syscall"
    	"time"
    	"unsafe"
    )
    
    // Default values of KeepAliveTime and KeepAliveInterval on Windows,
    // check out https://learn.microsoft.com/en-us/windows/win32/winsock/sio-keepalive-vals#remarks for details.
    const (
    	defaultKeepAliveIdle     = 2 * time.Hour
    	defaultKeepAliveInterval = time.Second
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if !windows.SupportTCPKeepAliveIdle() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top