Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for disappears (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/api/testing/unstructured_test.go

    		// We are explicitly overwriting custom fuzzing functions, to 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.
    		Funcs(
    			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: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

          cache.close()
          assertThat(readFileOrNull(getCleanFile("k1", 0))).isEqualTo(afterRemoveFileContents)
          assertThat(readFileOrNull(getDirtyFile("k1", 0))).isNull()
    
          // But they disappear when the sources are closed.
          it.assertValue(0, "a")
          it.assertValue(1, "a")
          assertThat(readFileOrNull(getCleanFile("k1", 0))).isNull()
          assertThat(readFileOrNull(getDirtyFile("k1", 0))).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. test/live.go

    		m33[byteptr()] == 0) && // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
    		m33[byteptr()] == 0 {
    		printnl()
    		return
    	}
    	printnl()
    }
    
    // select temps should disappear in the case bodies
    
    var c38 chan string
    
    func fc38() chan string
    func fi38(int) *string
    func fb38() *bool
    
    func f38(b bool) {
    	// we don't care what temps are printed on the lines with output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top