Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for homes (0.17 sec)

  1. index.yaml

        appVersion: RELEASE.2024-04-18T19-09-19Z
        created: "2024-04-28T03:14:12.227568814-07:00"
        description: High Performance Object Storage
        digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
        home: https://min.io
        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.run("env", "GOPATH")
    	tg.grepStdout(regexp.QuoteMeta(tg.path("home/go")), "want GOPATH=$HOME/go")
    
    	tg.setenv("GOROOT", tg.path("home/go"))
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go")
    
    	tg.setenv("GOROOT", tg.path("home/go")+"/")
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go/")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			}
    		}
    
    	case v.Op == OpArg:
    		home := state.f.getHome(v.ID).(LocalSlot)
    		stackOffset := state.stackOffset(home)<<1 | 1
    		for _, slot := range vSlots {
    			if state.loggingLevel > 1 {
    				state.logf("at %v: arg %v now on stack in location %v\n", v, state.slots[slot], home)
    				if last := locs.slots[slot]; !last.absent() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    			withMounts(map[string]string{"/home/r2lib1": "/usr/r2lib1"}),
    			withEnvs(map[string]string{"r2devices": "dev1 dev2"}),
    		),
    	)
    	testManager.podDevices.insert("pod1", "con2", resourceName1,
    		constructDevices([]string{"dev3"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev3": "/dev/r1dev3"}),
    			withMounts(map[string]string{"/home/r1lib1": "/usr/r1lib1"}),
    		),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    								{Name: "datadir", MountPath: "/tmp/"},
    								{Name: "home", MountPath: "/home"},
    							},
    						},
    					},
    					Volumes: []v1.Volume{{
    						Name: "home",
    						VolumeSource: v1.VolumeSource{
    							HostPath: &v1.HostPathVolumeSource{
    								Path: fmt.Sprintf("/tmp/%v", "home"),
    							},
    						}}},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. configure.py

                                   environ_cp['APPDATA'])
      elif is_macos():
        default_ndk_path = '%s/library/Android/Sdk/ndk-bundle' % environ_cp['HOME']
      else:
        default_ndk_path = '%s/Android/Sdk/ndk-bundle' % environ_cp['HOME']
    
      def valid_ndk_path(path):
        return (os.path.exists(path) and
                os.path.exists(os.path.join(path, 'source.properties')))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
     * padded to a word boundary.  The values of n_namesz and n_descsz do
     * not include the padding.
     */
    type elfNote struct {
    	nNamesz uint32
    	nDescsz uint32
    	nType   uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    			Fragment:    "foo&bar",
    			RawFragment: "foo%26bar",
    		},
    		"http://www.google.com/?q=go+language#foo%26bar",
    	},
    	{
    		"file:///home/adg/rabbits",
    		&URL{
    			Scheme: "file",
    			Host:   "",
    			Path:   "/home/adg/rabbits",
    		},
    		"file:///home/adg/rabbits",
    	},
    	// "Windows" paths are no exception to the rule.
    	// See golang.org/issue/6027, especially comment #9.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    As long as you use `union` after those files are added to `collection`, `union` will also contain those additional files.
    The same goes for the `different` file collection.
    
    Live collections are also important when it comes to _filtering_.
    Suppose you want to use a subset of a file collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// binary's BSS. It can be zero, in which case the first level
    	// index is effectively unused. There is a performance benefit
    	// to this, since the generated code can be more efficient,
    	// but comes at the cost of having a large L2 mapping.
    	//
    	// We use the L1 map on 64-bit Windows because the arena size
    	// is small, but the address space is still 48 bits, and
    	// there's a high cost to having a large L2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top