Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 186 for ONCE (0.12 sec)

  1. src/os/exec.go

    			// Process' persistent reference on the handle. We
    			// can't allow concurrent calls to drop the reference
    			// twice, so we use the status as a guard to ensure the
    			// reference is dropped exactly once.
    			return status
    		}
    		if refs == 0 {
    			// This should never happen because dropping the
    			// persistent reference always sets a status.
    			panic("release of handle with refcount 0")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// create an object to test
    	key, createdObj := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test-ns"}})
    	// update the object once to allow get by exact resource version to be tested
    	updateObj := createdObj.DeepCopy()
    	updateObj.Annotations = map[string]string{"test-annotation": "1"}
    	storedObj := &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

        }
    
        private static void applyDependencies(Project project) {
            // TODO This should be provided via GradlePluginDevelopmentExtension.gradleApiVersion once it's not an experimental feature
            InternalOptions internalOptions = ((ProjectInternal) project).getServices().get(InternalOptions.class);
            if (internalOptions.getOption(EXPERIMENTAL_SUPPRESS_GRADLE_API_PROPERTY).get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	i.allWatchers = map[namespacedName]watchersMap{}
    	i.valueWatchers = map[string]watchersMap{}
    }
    
    // As we don't need a high precision here, we keep all watchers timeout within a
    // second in a bucket, and pop up them once at the timeout. To be more specific,
    // if you set fire time at X, you can get the bookmark within (X-1,X+1) period.
    type watcherBookmarkTimeBuckets struct {
    	// the key of watcherBuckets is the number of seconds since createTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

    import java.util.concurrent.atomic.AtomicInteger
    
    class ConfigurationCacheBuildServiceIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "BuildOperationListener build service is instantiated only once per build"() {
            given:
            buildFile """
                abstract class ListenerService
                    implements $BuildService.name<${BuildServiceParameters.name}.None>, $BuildOperationListener.name {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.cc

      TF_CHECK_OK(
          stream_executor::PlatformManager::RegisterPlatform(std::move(cplatform)));
      // TODO(annarev): Return `use_bfc_allocator` value in some way so that it is
      // available in `PluggableDeviceProcessState` once the latter is checked in.
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            'an archive entry' | 'fromArchiveEntry("resource.zip", "resource.txt")'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/22255')
        def "finalizeValueOnRead property provider is evaluated only once"() {
            given:
            buildFile << """
                class Oracle extends DefaultTask {
    
                    @Internal final Property<String> answer
    
                    Oracle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	defer os.RemoveAll(socketDir)
    	m, _, p := setup(t, []*pluginapi.Device{}, func(n string, d []pluginapi.Device) {}, socketName, pluginSocketName)
    	cleanup(t, m, p)
    	// Stop should tolerate being called more than once.
    	cleanup(t, m, p)
    }
    
    func TestNewManagerImplStartProbeMode(t *testing.T) {
    	socketDir, socketName, pluginSocketName, err := tmpSocketDir()
    	require.NoError(t, err)
    	defer os.RemoveAll(socketDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    	writeSuccessNoContent(w)
    }
    
    //msgp:ignore BatchJobPool
    
    // BatchJobPool batch job pool
    type BatchJobPool struct {
    	ctx          context.Context
    	objLayer     ObjectLayer
    	once         sync.Once
    	mu           sync.Mutex
    	jobCh        chan *BatchJobRequest
    	jmu          sync.Mutex // protects jobCancelers
    	jobCancelers map[string]context.CancelFunc
    	workerKillCh chan struct{}
    	workerSize   int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top