Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for destroys (3.98 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

            }
        }
    }
    
    /**
     * Tasks that are called by the (currently separate) promotion build running on CI.
     */
    tasks.register("promotionBuild") {
        description = "Build production distros, smoke test them and publish"
        group = "publishing"
        dependsOn(":packageBuild", "publish")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            cleanBuildDir()
            withBuildCache().run "weirdOutput"
            then:
            skipped ":weirdOutput"
            expectedOutput.file
        }
    
        def "local state declared via #api API is destroyed when task is loaded from cache"() {
            def localStateFile = file("local-state.json")
            buildFile << defineTaskWithLocalState(useRuntimeApi)
    
            when:
            withBuildCache().run "customTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

        // why this is correct are subtle. We assume that:
        // a) all consumers of the device tensor will wait for its definition event.
        // b) if the tensor is destroyed, then the memory allocator will not hand
        //    out the same buffers until the transfer has completed.
        status = host_to_device_stream_->DoHostCallback([ref]() { ref.Unref(); });
        done(status);
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// running if it is P 0 on startup.
    	idlepMask.clear(id)
    }
    
    // destroy releases all of the resources associated with pp and
    // transitions it to status _Pdead.
    //
    // sched.lock must be held and the world must be stopped.
    func (pp *p) destroy() {
    	assertLockHeld(&sched.lock)
    	assertWorldStopped()
    
    	// Move all runnable goroutines to the global queue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/internal/trace/event/go122/event.go

    	// Coroutines. Added in Go 1.23.
    	EvGoSwitch        // goroutine switch (coroswitch) [timestamp, goroutine ID, goroutine seq]
    	EvGoSwitchDestroy // goroutine switch and destroy [timestamp, goroutine ID, goroutine seq]
    	EvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/os_plan9.go

    func unminit() {
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    var sysstat = []byte("/dev/sysstat\x00")
    
    func getproccount() int32 {
    	var buf [2048]byte
    	fd := open(&sysstat[0], _OREAD, 0)
    	if fd < 0 {
    		return 1
    	}
    	ncpu := int32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.cc

                                               &HostCallbackTrampoline, ctx);
      }
      void DeallocateStream(Stream* stream) override {
        static_cast<CStream*>(stream)->Destroy();
      }
      absl::Status BlockHostForEvent(Stream* stream, Event* event) {
        OwnedTFStatus c_status(TF_NewStatus());
        SP_Event event_handle = static_cast<CEvent*>(event)->Handle();
    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. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                        }
                    }
                }
    
                return KaCompilationResult.Success(outputFiles, capturedValues)
            } finally {
                generationState.destroy()
            }
        }
    
        private fun computeTargetModules(module: KtModule): List<KtModule> {
            return when (module) {
                is KtDanglingFileModule -> listOf(module.contextModule, module)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            } catch (final Exception e) {
                throw new FessSystemException("Failed to parse project.properties.", e);
            }
        }
    
        @PreDestroy
        public void destroy() {
            shutdownHookList.forEach(action -> {
                try {
                    action.run();
                } catch (final Exception e) {
                    logger.warn("Failed to process shutdown task.", e);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. build/lib/release.sh

        fi
    
        kube::util::wait-for-jobs || { kube::log::error "previous Docker build failed"; return 1; }
        kube::log::status "Docker builds done"
      )
    
    }
    
    # This will pack kube-system manifests files for distros such as COS.
    function kube::release::package_kube_manifests_tarball() {
      kube::log::status "Building tarball: manifests"
    
      local src_dir="${KUBE_ROOT}/cluster/gce/manifests"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top