Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for disappears (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/JobHelper.java

                if (jobManager.isSchedulingDone()) {
                    jobManager.findJobByUniqueOf(LaJobUnique.of(scheduledJob.getId())).ifPresent(job -> {
                        job.disappear();
                    }).orElse(() -> logger.debug("Job {} is not scheduled.", scheduledJob.getId()));
                }
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/api/testing/applyconfiguration_test.go

    		Funcs(
    			// Ensure that InitContainers and their statuses are not generated. This
    			// is because in this test we are simply doing json operations, in which
    			// those disappear.
    			func(s *api.PodSpec, c fuzz.Continue) {
    				c.FuzzNoCustom(s)
    				s.InitContainers = nil
    			},
    			func(s *api.PodStatus, c fuzz.Continue) {
    				c.FuzzNoCustom(s)
    				s.InitContainerStatuses = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            then:
            GradleConnectionException gce = thrown()
            gce.cause instanceof NullPointerException
        }
    
        @TargetGradleVersion("<3.0")
        def "retries if daemon seems to have disappeared and a daemon that did not do anything is idling (<3.0)"() {
            given:
            iteration++
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                    }
    
                    if (object == null) {
                        // The daemon has potentially disappeared, so mark the connection as suspect.
                        // This makes the connection lenient if outgoing messages cannot be written while attempting to gracefully shut down the connection (in the finally {} block below)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     could encapsulate everything we need about the project in the POM including
     plugin parameters and anything else.
    
     We once had a document that Vincent and I agreed upon and I was about to
     implement it and then I disappeared for 8 months so it never came to pass.
    
     So I guess it's important to figure out what people are using properties
     files for and see if we can't incorporate it all into the POM. Or if we do
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            _ * connection2.daemon >> Stub(DaemonConnectDetails)
            2 * connection2.receive() >>> [Stub(BuildStarted), new Success(resultMessage)]
            0 * connection._
        }
    
        def "reports daemon disappeared when result is null and cannot write further message to connection"() {
            def parameters = Stub(BuildActionParameters)
            parameters.currentDir >> new File(".")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

            project.webAppDirName = 'foo'
    
            then:
            project.eclipse.wtp.component.resources == [new WbResource('/', 'foo')]
        }
    
        def "web app dir should not disappear while manually adding a wb resource"() {
            when:
            project.apply(plugin: 'war')
            project.apply(plugin: 'eclipse-wtp')
            project.webAppDirName = 'foo'
    
            project.eclipse.wtp {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. pkg/cache/cache_test.go

    	// loop until eviction happens. If eviction doesn't happen, this loop will get stuck forever which is fine
    	for {
    		time.Sleep(10 * time.Millisecond)
    
    		_, ok := c.Get("A")
    		if !ok {
    			// item disappeared, we're done
    			return
    		}
    	}
    }
    
    func testCacheFinalizer(gate *sync.WaitGroup) {
    	runtime.GC() //nolint: revive
    	gate.Wait()
    }
    
    func benchmarkCacheGet(c Cache, b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. cmd/dependencyverifier/dependencyverifier.go

    	}
    	for expectedRef, expectedFrom := range configFromFile.Status.UnwantedReferences {
    		actualFrom, ok := config.Status.UnwantedReferences[expectedRef]
    		if !ok {
    			// disappeared entirely
    			log.Printf("Good news! Unwanted dependency %q is no longer referenced. Remove status.unwantedReferences[%q] in %s to ensure it doesn't get reintroduced.", expectedRef, expectedRef, dependenciesJSONPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. tensorflow/c/ops.h

    // deprecated. `explanation` should contain the reason for the deprecation and
    // what to use instead.
    //
    // This function is only an indicator that the operation may disappear in a
    // version of TensorFlow after `version`. It does not affect op registration.
    TF_CAPI_EXPORT extern void TF_OpDefinitionBuilderDeprecated(
        TF_OpDefinitionBuilder* builder, int version, const char* explanation);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top