Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 2,372 for light (0.04 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    Tree tree = new Tree(
                            left: new Tree([:]),
                            right: new Tree([:])
                        )
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
                        String nonAnnotated
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/FileDownloadResult.java

    /**
     * The result of a file download operation.
     *
     * @since 7.3
     */
    public interface FileDownloadResult extends OperationResult {
        /**
         * Returns the total download size. Note that this might not be the same as the file size.
         */
        long getBytesDownloaded();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 988 bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ```Python hl_lines="5-6"
    {!../../../docs_src/dependencies/tutorial007.py!}
    ```
    
    !!! tip
        You can use `async` or regular functions.
    
        **FastAPI** will do the right thing with each, the same as with normal dependencies.
    
    ## A dependency with `yield` and `try`
    
    If you use a `try` block in a dependency with `yield`, you'll receive any exception that was thrown when using the dependency.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    	// an integer modulo N. This is the absolute worst of all worlds: we still
    	// have to reduce, because the result might still overflow N, but to take
    	// the left-most bits for P-521 we have to do a right shift.
    	if size := c.N.Size(); len(hash) >= size {
    		hash = hash[:size]
    		if excess := len(hash)*8 - c.N.BitLen(); excess > 0 {
    			hash = bytes.Clone(hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. src/text/template/doc.go

    delimiter (by default "{{") is followed immediately by a minus sign and white
    space, all trailing white space is trimmed from the immediately preceding text.
    Similarly, if the right delimiter ("}}") is preceded by white space and a minus
    sign, all leading white space is trimmed from the immediately following text.
    In these trim markers, the white space must be present:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/IvyArtifactName.java

     */
    
    package org.gradle.internal.component.model;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents the 'name' part of an Ivy artifact, independent of which module version the artifact might belong to.
     */
    public interface IvyArtifactName {
        String getName();
    
        String getType();
    
        @Nullable
        String getExtension();
    
        @Nullable
        String getClassifier();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 1019 bytes
    - Viewed (0)
  7. test/fixedbugs/issue33275_run.go

    // license that can be found in the LICENSE file.
    
    // Make sure we don't get an index out of bounds error
    // while trying to print a map that is concurrently modified.
    // The runtime might complain (throw) if it detects the modification,
    // so we have to run the test as a subprocess.
    
    package main
    
    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 717 bytes
    - Viewed (0)
  8. src/time/tick_test.go

    	Sleep(sched)
    	waitDone(done)
    	tim.Stop()
    	close(stop)
    	waitDone(done1)
    	waitDone(done2)
    	if isTicker {
    		// extra send might have sent done again
    		// (handled by buffering done above).
    		select {
    		default:
    		case <-done:
    		}
    		// extra send after that might have filled C.
    		select {
    		default:
    		case <-C:
    		}
    	}
    	notDone(done)
    
    	// Test enqueueTimerChan when timer is stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy.go

    	if baseCT, _, _ := mime.ParseMediaType(resCT); baseCT == "text/event-stream" {
    		return -1 // negative means immediately
    	}
    
    	// We might have the case of streaming for which Content-Length might be unset.
    	if res.ContentLength == -1 {
    		return -1
    	}
    
    	return p.FlushInterval
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/security/http-basic-auth.md

    At that point, by noticing that the server took some microseconds longer to send the "Incorrect username or password" response, the attackers will know that they got _something_ right, some of the initial letters were right.
    
    And then they can try again knowing that it's probably something more similar to `stanleyjobsox` than to `johndoe`.
    
    #### A "professional" attack
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top