Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for disappears (0.38 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            run 'dependencies', '--configuration', 'conf'
    
            then:
            noExceptionThrown()
    
    
        }
    
        def 'optional dependency marked as no longer pending reverts to pending if hard edge disappears (remover has constraint: #dependsOptional, root has constraint: #constraintsOptional)'() {
            given:
            def optional = mavenRepo.module('org', 'optional', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    		if apierrors.IsConflict(err) {
    			continue
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    		break
    	}
    
    	// wait for condition to go away
    	t.Log("Wait for condition to disappear")
    	err = wait.PollImmediate(100*time.Millisecond, 5*time.Second, func() (bool, error) {
    		obj, err := apiExtensionClient.ApiextensionsV1().CustomResourceDefinitions().Get(context.TODO(), name, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.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.
    // Defined as ABIInternal since they do not use the stack-based Go ABI.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    	MOVQ	CX, BX
    	JMP	runtime·goPanicIndex<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/os/os_test.go

    			return nil, xerr
    		}
    		return Lstat(path)
    	}
    	defer func() { *LstatP = Lstat }()
    
    	dir := t.TempDir()
    	touch(t, filepath.Join(dir, "good1"))
    	touch(t, filepath.Join(dir, "x")) // will disappear or have an error
    	touch(t, filepath.Join(dir, "good2"))
    	readDir := func() ([]FileInfo, error) {
    		d, err := Open(dir)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer d.Close()
    		return d.Readdir(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    	// verify we are known to the pod worker still
    	status, ok := p.podSyncStatuses[podUID]
    	if !ok {
    		// pod status has disappeared, the worker should exit
    		klog.V(4).InfoS("Pod worker no longer has status, worker should exit", "podUID", podUID)
    		return nil, update, false, false, false
    	}
    	if !status.working {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    	// that source code) for all modules that are necessary to ensure that imports
    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    	// We re-resolve the packages in parallel because this process involves disk
    	// I/O to check for package sources, and because the process of checking for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top