Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for disappears (0.17 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. 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)
  3. 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)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Mode: auth.PeerAuthentication_MutualTLS_PERMISSIVE,
    		}
    	})
    	s.assertEvent(t, s.podXdsName("pod1"), s.podXdsName("pod3")) // Matching workloads should receive an event
    	// Static STRICT policy should disappear
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{"ns1/selector"})
    
    	// Change the workload policy to DISABLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. src/runtime/asm_loong64.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    	MOVV	R20, R4
    	MOVV	R21, R5
    	JMP	runtime·goPanicIndex<ABIInternal>(SB)
    TEXT runtime·panicIndexU<ABIInternal>(SB),NOSPLIT,$0-16
    	MOVV	R20, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex(SB),NOSPLIT,$0-8
    	MOVW	R1, x+0(FP)
    	MOVW	R2, y+4(FP)
    	JMP	runtime·goPanicIndex(SB)
    TEXT runtime·panicIndexU(SB),NOSPLIT,$0-8
    	MOVW	R1, x+0(FP)
    	MOVW	R2, y+4(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                // If the value disappeared, this entry is partially collected,
                // and we should pretend like it doesn't exist.
                V entryValue = e.getValue();
                if (entryValue == null) {
                  if (isCollected(e)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                // If the value disappeared, this entry is partially collected,
                // and we should pretend like it doesn't exist.
                V entryValue = e.getValue();
                if (entryValue == null) {
                  if (isCollected(e)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    			t.Error("wrong sign")
    		}
    	}
    }
    
    func testMapNan(t *testing.T, m map[float64]int) {
    	if len(m) != 3 {
    		t.Error("length wrong")
    	}
    	s := 0
    	for k, v := range m {
    		if k == k {
    			t.Error("nan disappeared")
    		}
    		if (v & (v - 1)) != 0 {
    			t.Error("value wrong")
    		}
    		s |= v
    	}
    	if s != 7 {
    		t.Error("values wrong")
    	}
    }
    
    // nan is a good test because nan != nan, and nan has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    	JMP	runtime·goPanicIndex<ABIInternal>(SB)
    TEXT runtime·panicIndexU<ABIInternal>(SB),NOSPLIT,$0-16
    	JMP	runtime·goPanicIndexU<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top