Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 145 for setDirs (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

         * The library files that should be installed.
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public FileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
         * Adds a set of library files to be installed. The provided libs object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

     * information about the overall build timing and collection of project specific
     * information.  All timing information is stored as milliseconds since epoch times.
     * <p>
     * Setters are expected to be called in the following order:
     * <ul>
     * <li>setProfilingStarted</li>
     * <li>setBuildStarted</li>
     * <li>setSettingsEvaluated</li>
     * <li>setProjectsLoaded</li>
     * <li>setProjectsEvaluated</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        public ConfigurableFileCollection getLibs() {
            return libs;
        }
    
        public void setLibs(FileCollection libs) {
            this.libs.setFrom(libs);
        }
    
        /**
         * Adds a set of object files to be linked. The provided source object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/runtime/hash_test.go

    }
    func sparse(t *testing.T, h *HashSet, n int, k int) {
    	b := make([]byte, n/8)
    	setbits(h, b, 0, k)
    	h.check(t)
    }
    
    // set up to k bits at index i and greater
    func setbits(h *HashSet, b []byte, i int, k int) {
    	h.addB(b)
    	if k == 0 {
    		return
    	}
    	for j := i; j < len(b)*8; j++ {
    		b[j/8] |= byte(1 << uint(j&7))
    		setbits(h, b, j+1, k-1)
    		b[j/8] &= byte(^(1 << uint(j&7)))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/graph.go

    // The single-threaded GraphBuilder.processGraphChanges() is the sole writer of the
    // nodes. The multi-threaded GarbageCollector.attemptToDeleteItem() reads the nodes.
    // WARNING: node has different locks on different fields. setters and getters
    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/strings/strings.go

    	n := 0
    	wasSpace := 1
    	// setBits is used to track which bits are set in the bytes of s.
    	setBits := uint8(0)
    	for i := 0; i < len(s); i++ {
    		r := s[i]
    		setBits |= r
    		isSpace := int(asciiSpace[r])
    		n += wasSpace & ^isSpace
    		wasSpace = isSpace
    	}
    
    	if setBits >= utf8.RuneSelf {
    		// Some runes in the input string are not ASCII.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            void setb(String value) { myb = value }
        }
    
        def "property extraction is on par with groovy properties"() {
            given:
            def bean = new Bean()
    
            when:
            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
            bean.cCompiler = 'lower-case first char'
            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. pkg/volume/git_repo/git_repo.go

    }
    
    func (b *gitRepoVolumeMounter) execCommand(command string, args []string, dir string) ([]byte, error) {
    	cmd := b.exec.Command(command, args...)
    	cmd.SetDir(dir)
    	return cmd.CombinedOutput()
    }
    
    func validateVolume(src *v1.GitRepoVolumeSource) error {
    	if err := validateNonFlagArgument(src.Repository, "repository"); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. test/fibo.go

    }
    
    func (x nat) bitlen() int {
    	if i := len(x); i > 0 {
    		return (i-1)*W + bitlen(x[i-1])
    	}
    	return 0
    }
    
    func (x nat) String() string {
    	const shortLen = 10
    	s := new(big.Int).SetBits(x).String()
    	if *short && len(s) > shortLen {
    		s = s[:shortLen] + "..."
    	}
    	return s
    }
    
    func fibo(n int, half, opt bool) nat {
    	switch n {
    	case 0:
    		return nil
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 08 22:22:58 UTC 2014
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            then:
            readableProperty(JavaTestSubject, String, "myProperty").getValue(myProperties) == "otherValue"
        }
    
        def "write property with multiple setters"() {
            when:
            writeableProperty(JavaTestSubject, "myProperty2", String.class).setValue(myProperties, "stringValue")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top