Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,176 for efter (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.h

    // new file for each pass. The file name will have the format
    // {file_name_prefix}_{pass_number}_{pass_name}_{before|after}.mlir.
    // * `file_name_prefix` is from input.
    // * `pass_number` increments from 1 for each pass.
    // * `pass_name` is the name of the pass.
    // * `before|after` indicates whether the dump occurs before or after the pass.
    absl::Status MaybeEnableIrPrinting(mlir::PassManager &pm,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/package.go

    package report
    
    import "regexp"
    
    // pkgRE extracts package name, It looks for the first "." or "::" that occurs
    // after the last "/". (Searching after the last / allows us to correctly handle
    // names that look like "some.url.com/foo.bar".)
    var pkgRE = regexp.MustCompile(`^((.*/)?[\w\d_]+)(\.|::)([^/]*)$`)
    
    // packageName returns the package name of the named symbol, or "" if not found.
    func packageName(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 512 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

                logger.info("Processing request. Number of temp files: " + countTmpFiles());
            }, e -> {});
            long after = countTmpFiles();
            logger.info("After close response. Number of temp files: " + after);
    
            // ## Assert ##
            assertEquals(before, after);
        }
    
        private long countTmpFiles() {
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

        public void afterSessionStart(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after all projects were built.
         *
         * This callback is intended to allow extensions to perform cleanup of any
         * allocated external resources after the build. It is invoked on best-effort
         * basis and may be missed due to an Error or RuntimeException in Maven core
         * code.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/OutgoingVariantsMutationIntegrationTest.groovy

            fails("mutateAfterResolve")
    
            then:
            failure.assertHasCause "Cannot change attributes of configuration ':compile' after it has been locked for mutation"
        }
    
        @ToBeFixedForConfigurationCache(because = "Task uses the Configuration API")
        def "cannot add outgoing variants after configuration is resolved"() {
            given:
            buildFile << """
    
            configurations {
                compile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/util.go

    	}
    
    	s = append(s, toInsert) // for grow the cap
    	copy(s[idx+1:], s[idx:])
    	s[idx] = toInsert
    
    	return s, true
    }
    
    // insertAfterFunc find and insert an element after the found element.
    // If the f function returns true, the returned value will be inserted after the found element.
    func insertAfterFunc[E any](s []E, f func(e E) (bool, E)) ([]E, bool) {
    	var toInsert E
    	idx := -1
    	for k, v := range s {
    		if ok, r := f(v); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/claiminfo.go

    func (info *ClaimInfo) setCDIDevices(pluginName string, cdiDevices []string) error {
    	// NOTE: Passing CDI device names as annotations is a temporary solution
    	// It will be removed after all runtimes are updated
    	// to get CDI device names from the ContainerConfig.CDIDevices field
    	annotations, err := cdi.GenerateAnnotations(info.ClaimUID, info.DriverName, cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/build.gradle.kts

    // tag::after-evaluate[]
    gradle.beforeProject {
        // Set a default value
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject {
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            val projectString = project.toString()
            println("Adding test task to $projectString")
            tasks.register("test") {
                doLast {
                    println("Running tests for $projectString")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeLifecycleListener.java

    import org.gradle.internal.service.scopes.StatefulListener;
    
    @EventScope(Scope.BuildTree.class)
    @StatefulListener
    public interface BuildTreeLifecycleListener {
        /**
         * Called after the build tree has been created, just after the services have been created.
         *
         * This method is called before the root build operation has started, so implementations should not perform any expensive work
         * and should not run any user code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/events.md

    The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
    
    Because this code is executed before the application **starts** taking requests, and right after it **finishes** handling requests, it covers the whole application **lifespan** (the word "lifespan" will be important in a second 😉).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top