Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 338 for convenient (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *              runs using the basic interface.
     */
    
    CU_EXPORT void CU_basic_show_failures(CU_pFailureRecord pFailure);
    /**<
     *  Prints a summary of run failures to stdout.
     *  This is provided for user convenience upon request, and does 
     *  not take into account the current run mode.  The failures are 
     *  printed to stdout independent of the most recent run mode.
     *
     *  @param pFailure List of CU_pFailureRecord's to output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/templates.md

    !!! note "Technical Details"
        You could also use `from starlette.templating import Jinja2Templates`.
    
        **FastAPI** provides the same `starlette.templating` as `fastapi.templating` just as a convenience for you, the developer. But most of the available responses come directly from Starlette. The same with `Request` and `StaticFiles`.
    
    ## Writing templates
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

                }
            }
            if (takesSingleParameter(method) && isSetterName(methodName)) {
                return SETTER;
            }
            return null;
        }
    
        /**
         * Convenience method org.gradle.util.internal.VersionNumber#parse(String) is not available, therefore check {@link GroovySystem#getVersion()} directly.
         * @return true if Groovy 3 is bundled, false otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/middleware.md

    !!! note "Technical Details"
        You could also use `from starlette.requests import Request`.
    
        **FastAPI** provides it as a convenience for you, the developer. But it comes directly from Starlette.
    
    ### Before and after the `response`
    
    You can add code to be run with the `request`,  before any *path operation* receives it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * then you must look at the version thanks to the {@link #getComponentId()} method. But
     * because there can also be version listings, you must also check for {@link #getModuleId()}.
     * <p></p>
     * A {@link #isVersionListing() convenience method} makes it easier to find out if you
     * are in the version listing case, or module version case.
     * <p></p>
     * Filtering is done by calling the {@link #notFound()} method: as soon as you know a module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/net/hosts.go

    var hosts struct {
    	sync.Mutex
    
    	// Key for the list of literal IP addresses must be a host
    	// name. It would be part of DNS labels, a FQDN or an absolute
    	// FQDN.
    	// For now the key is converted to lower case for convenience.
    	byName map[string]byName
    
    	// Key for the list of host names must be a literal IP address
    	// including IPv6 address with zone identifier.
    	// We don't support old-classful IP address notation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        }
    
        /**
         * Convenience method for configuring Javadoc generation options.
         *
         * @param block The configuration block for Javadoc generation options.
         */
        public void options(@DelegatesTo(MinimalJavadocOptions.class) Closure<?> block) {
            ConfigureUtil.configure(block, getOptions());
        }
    
        /**
         * Convenience method for configuring Javadoc generation options.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
         * @param v2 sources producer for V2, receiver is the `src/main` directory
         * @param block convenience block invoked on the result
         * @return the check result
         */
        private
        fun runBinaryCompatibilityCheck(v1: File.() -> Unit, v2: File.() -> Unit, block: CheckResult.() -> Unit = {}): CheckResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/time/tick.go

    		panic("non-positive interval for Ticker.Reset")
    	}
    	if !t.initTicker {
    		panic("time: Reset called on uninitialized Ticker")
    	}
    	resetTimer((*Timer)(unsafe.Pointer(t)), when(d), int64(d))
    }
    
    // Tick is a convenience wrapper for [NewTicker] providing access to the ticking
    // channel only. Unlike NewTicker, Tick will return nil if d <= 0.
    //
    // Before Go 1.23, this documentation warned that the underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/log/slog/doc.go

    pair with key "count" and value 3.
    
    The [Info] top-level function calls the [Logger.Info] method on the default Logger.
    In addition to [Logger.Info], there are methods for Debug, Warn and Error levels.
    Besides these convenience methods for common levels,
    there is also a [Logger.Log] method which takes the level as an argument.
    Each of these methods has a corresponding top-level function that uses the
    default logger.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top