Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for vols (0.04 sec)

  1. src/internal/fuzz/minimize.go

    }
    
    func minimizeBytes(v []byte, try func([]byte) bool, shouldStop func() bool) {
    	tmp := make([]byte, len(v))
    	// If minimization was successful at any point during minimizeBytes,
    	// then the vals slice in (*workerServer).minimizeInput will point to
    	// tmp. Since tmp is altered while making new candidates, we need to
    	// make sure that it is equal to the correct value, v, before exiting
    	// this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/flexvolume/common_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func fakeVolumeSpec() *volume.Spec {
    	vol := &v1.Volume{
    		Name: "vol1",
    		VolumeSource: v1.VolumeSource{
    			FlexVolume: &v1.FlexVolumeSource{
    				Driver:   "kubernetes.io/fakeAttacher",
    				ReadOnly: false,
    			},
    		},
    	}
    	return volume.NewSpecFromVolume(vol)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. src/html/template/attr.go

    	"challenge":       contentTypeUnsafe,
    	"charset":         contentTypeUnsafe,
    	"class":           contentTypePlain,
    	"classid":         contentTypeURL,
    	"codebase":        contentTypeURL,
    	"cols":            contentTypePlain,
    	"colspan":         contentTypePlain,
    	"content":         contentTypeUnsafe,
    	"contenteditable": contentTypePlain,
    	"contextmenu":     contentTypePlain,
    	"controls":        contentTypePlain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
Back to top