Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 513 for tuning (1.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    )
    
    // Note: If we use build tags to use go/versions when go >=1.22,
    // we run into go.dev/issue/53737. Under some operations users would see an
    // import of "go/versions" even if they would not compile the file.
    // For example, during `go get -u ./...` (go.dev/issue/64490) we do not try to include
    // For this reason, this library just a clone of go/versions for the moment.
    
    // Lang returns the Go language version for version x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            int getReceivedFileSystemEventsInCurrentBuild() {
                def duringBuildStatusLine = spec.result.getPostBuildOutputLineThatContains(" file system events during the current build")
                def numberMatcher = duringBuildStatusLine =~ /Received (\d+) file system events during the current build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesInCurrentBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/net/http/main_test.go

    		// of latency waiting for them to exit at the end of each test.
    		return
    	}
    
    	// We shouldn't be running the leak check for parallel tests, because we might
    	// report the goroutines from a test that is still running as a leak from a
    	// completely separate test that has just finished. So we use non-atomic loads
    	// and stores for the leakReported variable, and store every time we start a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	j, ok := c.(JoinData)
    	if !ok {
    		return errors.New("preflight phase invoked with an invalid data struct")
    	}
    	fmt.Println("[preflight] Running pre-flight checks")
    
    	// Start with general checks
    	klog.V(1).Infoln("[preflight] Running general checks")
    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * - not use Kotlin resolve inside, as these functions are called during session initialization, so Analysis API access is forbidden.
     *
     * #### Lifecycle Management
     *
     * A [KaResolveExtension] is tied to the lifetime of its module's analysis session. It is created by [KaResolveExtensionProvider] during
     * creation of an analysis session, and disposed after the analysis session has been invalidated.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonFactory.java

                    // This notifies the cancellation handler that a worker daemon has been in use during this build session.  If the
                    // build session is cancelled, we can't guarantee that all worker daemons are in a safe state, so the cancellation
                    // handler will stop any long-lived worker daemons.  If a worker is not used during this session (i.e. this method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 13:20:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/runtime/msan.go

    }
    
    // Private interface for the runtime.
    const msanenabled = true
    
    // If we are running on the system stack, the C program may have
    // marked part of that stack as uninitialized. We don't instrument
    // the runtime, but operations like a slice copy can call msanread
    // anyhow for values on the stack. Just ignore msanread when running
    // on the system stack. The other msan functions are fine.
    //
    //go:linkname msanread
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

    import com.google.common.base.Throwables;
    
    import javax.annotation.Nullable;
    
    /**
     * A helper to handle transform errors in {@link InstrumentingClassLoader}.
     * The agent cannot abort the class loading by throwing an exception during instrumentation.
     * Instead, this class allows to record the exception and rethrow it after class loading is mostly done.
     * The suggested pattern is to override the {@link ClassLoader#findClass(String)}:
     * <pre>
     * <code>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/database/sql/64707.md

    Errors returned by [driver.Valuer] implementations are now wrapped for
    improved error handling during operations like [DB.Query], [DB.Exec],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 160 bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         *         {@link ProjectBuilderException}.
         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top