Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for returns_ (0.29 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link java.util.concurrent.Callable} that returns any supported type. The callable's return value is resolved recursively.</li>
         *
         * </ul>
         *
         * @param path The object to resolve as a File.
         * @return The resolved file. Never returns null.
         */
        File file(Object path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. pkg/volume/volume.go

    	// SetUpDevice returns stagingPath if device setup was successful
    	SetUpDevice() (stagingPath string, err error)
    
    	// MapPodDevice maps the block device to a path and return the path.
    	// Unique device path across kubelet node reboot is required to avoid
    	// unexpected block volume destruction.
    	// If empty string is returned, the path returned by attacher.Attach() and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/image/geom.go

    	return r.Min.String() + "-" + r.Max.String()
    }
    
    // Dx returns r's width.
    func (r Rectangle) Dx() int {
    	return r.Max.X - r.Min.X
    }
    
    // Dy returns r's height.
    func (r Rectangle) Dy() int {
    	return r.Max.Y - r.Min.Y
    }
    
    // Size returns r's width and height.
    func (r Rectangle) Size() Point {
    	return Point{
    		r.Max.X - r.Min.X,
    		r.Max.Y - r.Min.Y,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/os/user/lookup.go

    		return u, err
    	}
    	return lookupUserId(uid)
    }
    
    // LookupGroup looks up a group by name. If the group cannot be found, the
    // returned error is of type [UnknownGroupError].
    func LookupGroup(name string) (*Group, error) {
    	return lookupGroup(name)
    }
    
    // LookupGroupId looks up a group by groupid. If the group cannot be found, the
    // returned error is of type [UnknownGroupIdError].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

        void gradleRuntime(Runnable runnable);
    
        /**
         * Returns an action that represents some deferred execution of the current user code. While the returned action is running, the details of the current application are restored.
         * Returns the given action when there is no current application.
         */
        <T> Action<T> reapplyCurrentLater(Action<T> action);
    
        /**
         * Returns details of the current application, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/net/http/66008.md

    The new [ParseCookie] function parses a Cookie header value and
    returns all the cookies which were set in it. Since the same cookie
    name can appear multiple times the returned Values can contain
    more than one value for a given key.
    
    The new [ParseSetCookie] function parses a Set-Cookie header value and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 17:43:50 UTC 2024
    - 359 bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceRepository.java

    public interface ExternalResourceRepository {
        /**
         * Returns a copy of this repository with progress logging enabled.
         */
        ExternalResourceRepository withProgressLogging();
    
        /**
         * Returns the resource with the given name. Note that this method does not access the resource in any way, it simply creates an object that can. To access the resource, use the methods on the returned object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pkg/controller/history/controller_history.go

    	// cease to attempt to retry creation after some number of attempts and return an error. If the returned
    	// error is not nil, creation failed. If the returned error is nil, the returned ControllerRevision has been
    	// created.
    	// Callers must make sure that collisionCount is not nil. An error is returned if it is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/lex/lex.go

    func IsRegisterShift(r ScanToken) bool {
    	return ROT <= r && r <= LSH // Order looks backwards because these are negative.
    }
    
    func (t ScanToken) String() string {
    	switch t {
    	case scanner.EOF:
    		return "EOF"
    	case scanner.Ident:
    		return "identifier"
    	case scanner.Int:
    		return "integer constant"
    	case scanner.Float:
    		return "float constant"
    	case scanner.Char:
    		return "rune constant"
    	case scanner.String:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
     * The returned string attempts to be column-aligned to 6 characters. For negative and large values
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top