Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,431 for tuning (0.46 sec)

  1. src/internal/trace/testdata/testprog/annotations-stress.go

    	ctx1, t1 := trace.NewTask(ctx0, "type1")
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	t1.End()
    
    	// Create a task that starts during the trace and ends after.
    	ctx2, t2 := trace.NewTask(ctx0, "type2")
    
    	// Create a task that starts and ends during the trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
     * order that they are added.
     *
     * <p>Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown
     * during {@code Executor.execute} (e.g., a {@code RejectedExecutionException} or an exception
     * thrown by {@linkplain MoreExecutors#directExecutor direct execution}) will be caught and logged.
     *
     * @author Nishant Thakkar
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

        /**
         * Sets whether directories should be considered during up-to-date checks and build cache key calculations.  Defaults to false.
         *
         * See {@link #ignoreEmptyDirectories()}.
         *
         * @since 6.8
         */
        TaskInputFilePropertyBuilder ignoreEmptyDirectories(boolean ignoreEmptyDirectories);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue22781.go

    	a, b int
    }
    
    func main() {
    	debug.SetGCPercent(1)
    	for i := 0; i < 100000; i++ {
    		m := make(map[*T]struct{}, 0)
    		for j := 0; j < 20; j++ {
    			// During the call to mapassign_fast64, the key argument
    			// was incorrectly treated as a uint64. If the stack was
    			// scanned during that call, the only pointer to k was
    			// missed, leading to *k being collected prematurely.
    			k := new(T)
    			m[k] = struct{}{}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 04:30:27 UTC 2017
    - 680 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

                resultHandler.finished()
            }
    
            then:
            configureWasCancelled(resultHandler, "Could not fetch model of type 'GradleProject' using")
    
            where:
            configureOnDemand << [true, false]
        }
    
        def "can cancel build action execution during settings phase"() {
            setupCancelInSettingsBuild()
    
            def cancel = GradleConnector.newCancellationTokenSource()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.file.ContentFilterable
    
    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kubelet/lifecycle/interfaces.go

    	Reason string
    	// a brief message why the pod should be evicted.
    	Message string
    }
    
    // PodSyncHandler is invoked during each sync pod operation.
    type PodSyncHandler interface {
    	// ShouldEvict is invoked during each sync pod operation to determine
    	// if the pod should be evicted from the kubelet.  If so, the pod status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  8. releasenotes/notes/protocol-detection-timeout.yaml

        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
        - Non "server first" protocols will no longer have a risk of telemetry or traffic failures during slow connections
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/lockosthread.go

    	// Check that this goroutine is still running on a different
    	// thread.
    	if mainTID != 0 && gettid() == mainTID {
    		println("goroutine migrated to locked thread")
    		os.Exit(1)
    	}
    	println("OK")
    }
    
    func LockOSThreadAlt() {
    	// This is running locked to the main OS thread.
    
    	var subTID int
    	ready := make(chan bool, 1)
    	go func() {
    		// This goroutine must be running on a new thread.
    		runtime.LockOSThread()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/test/cmd/join_test.go

    		t.Run(rt.name, func(t *testing.T) {
    			_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
    			if (actual == nil) != rt.expected {
    				t.Errorf(
    					"failed CmdJoinConfig running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t  actual: %t",
    					rt.args,
    					actual,
    					rt.expected,
    					(actual == nil),
    				)
    			}
    			kubeadmReset()
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 6.6K bytes
    - Viewed (0)
Back to top