Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for homes (0.09 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        @Issue("gradle/gradle#5232")
        def "Serializes and reads back failed resolution when failure comes from an unmatched typed attribute"() {
            given:
            repository {
                'org:test:1.0' {
                    attribute('lifecycle', 'some')
                }
            }
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/traceback.go

    		// Override registers if blocked in system call.
    		pc = gp.syscallpc
    		sp = gp.syscallsp
    		flags &^= unwindTrap
    	}
    	if gp.m != nil && gp.m.vdsoSP != 0 {
    		// Override registers if running in VDSO. This comes after the
    		// _Gsyscall check to cover VDSO calls after entersyscall.
    		pc = gp.m.vdsoPC
    		sp = gp.m.vdsoSP
    		flags &^= unwindTrap
    	}
    
    	// Print traceback.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Perhaps it’s an update to a web service or a database table.
    Or sometimes you have a task which should always run.
    
    That’s where the `doNotTrackState()` method on `Task` comes in.
    One can use this to disable up-to-date checks completely for a task, like so:
    
    .Ignoring up-to-date checks
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	}
    	if dataDir != "" {
    		srcDataPath = retainSlash(pathJoin(srcVolumeDir, srcPath, dataDir))
    		// make sure to always use path.Join here, do not use pathJoin as
    		// it would additionally add `/` at the end and it comes in the
    		// way of renameAll(), parentDir creation.
    		dstDataPath = pathutil.Join(dstVolumeDir, dstPath, dataDir)
    	}
    
    	if err = checkPathLength(srcFilePath); err != nil {
    		return res, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		return nil, fields.Set{"metadata.name": pod.Name, "spec.nodeName": pod.Spec.NodeName}, nil
    	}
    	// Use compact to increase etcd global revision without changes to any resources.
    	// The increase in resources version comes from Kubernetes compaction updating hidden key.
    	// Used to test consistent List to confirm it returns latest etcd revision.
    	compaction(ctx, t, initialRV)
    	currentRV := fmt.Sprintf("%d", continueRV+1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

        int pos = indexIn(string);
        if (pos == -1) {
          return string;
        }
    
        char[] chars = string.toCharArray();
        int spread = 1;
    
        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top