Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for farm (0.06 sec)

  1. cmd/test-utils_test.go

    }
    
    // getRandomDisks - Creates a slice of N random disks, each of the form - minio-XXX
    func getRandomDisks(n int) ([]string, error) {
    	var erasureDisks []string
    	for i := 0; i < n; i++ {
    		path, err := os.MkdirTemp(globalTestTmpDir, "minio-")
    		if err != nil {
    			// Remove directories created so far.
    			removeRoots(erasureDisks)
    			return nil, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    // k8s.ParentReference in a form that can be stored in a map
    type parentKey struct {
    	Kind config.GroupVersionKind
    	// Name is the original name of the resource (eg Kubernetes Gateway name)
    	Name string
    	// Namespace is the namespace of the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    // and support for PC relative addressing must be available if relocation is needed.
    // On power10, the assembler will determine when to use DS-form or prefixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    and GOPATH mode. When using modules, the patterns match against the module path.
    When using GOPATH, the patterns match against the import path corresponding to
    the root of the version control repository.
    
    The general form of the GOVCS setting is a comma-separated list of
    pattern:vcslist rules. The pattern is a glob pattern that must match
    one or more leading elements of the module or import path. The vcslist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			fakeFilterRCMap := make(map[string]framework.Code, len(tt.nodeNames))
    			for i, nodeName := range tt.nodeNames {
    				nodeWrapper := st.MakeNode().Capacity(veryLargeRes)
    				// Split node name by '/' to form labels in a format of
    				// {"hostname": tpKeys[0], "zone": tpKeys[1], "region": tpKeys[2]}
    				tpKeys := strings.Split(nodeName, "/")
    				nodeWrapper.Name(tpKeys[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			invalidMajorVersionMsg := fmt.Errorf("module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN:\n\tgo mod init %s", suggestGopkgIn(modPath))
    			base.Fatalf(`go: invalid module path "%v": %v`, modPath, invalidMajorVersionMsg)
    		}
    		invalidMajorVersionMsg := fmt.Errorf("major version suffixes must be in the form of /vN and are only allowed for v2 or later:\n\tgo mod init %s", suggestModulePath(modPath))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			setMaxElements:   5,
    			expectedSetCost:  17,
    		},
    		// all array-of-array tests should have the same expected cost along the same expression,
    		// since arrays-of-arrays are serialized the same in minimized form regardless of item type
    		// of the subarray ([[], [], ...])
    		{
    			name:             "array of number arrays with all",
    			schemaGenerator:  genArrayOfArraysWithRule("number", "self.all(x, true)"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. configure.py

      environ_cp[var_name] = str(var)
    
    
    def convert_version_to_int(version):
      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mount_LE(path string, filesystem string, fstype string, mtm uint32, parmlen int32, parm string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(filesystem)
    	if err != nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server_test.go

    	assert.NoError(t, err)
    	defer resp.Body.Close()
    	v, err := io.ReadAll(resp.Body)
    	assert.NoError(t, err)
    	assert.Equal(t, http.StatusInternalServerError, resp.StatusCode)
    	assert.Contains(t, string(v), "parse form failed")
    }
    
    func verifyEndpointResponse(t *testing.T, fw *serverTestFramework, path string, expectedResponse string) {
    	resp, err := http.Get(fw.testHTTPServer.URL + path)
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top