Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,068 for spill (2.53 sec)

  1. android/guava/src/com/google/common/base/Converter.java

       * documented as being for use with type parameters that have parametric nullness. But Converter's
       * type parameters do not. Still, we use it here so that we can suppress a warning at a smaller
       * level than the whole method but without performing a runtime null check. That way, we can still
       * pass null inputs to LegacyConverter, and it can violate the contract of Converter.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/TimeoutTest.java

                    f.close();
    
                    Thread.sleep(2 * soTimeout);
    
                    // connection should be closed by now
                    assertTrue("Transport is still connected", t.isDisconnected());
                    assertFalse("Connection is still in the pool", ( (SmbTransportPoolImpl) ctx.getTransportPool() ).contains(t));
                }
                finally {
                    f.delete();
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
  3. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "publications", "mavenJava", "pom-default.xml.asc").text
        }
    
        def "component can still be mutated after signing is configured for a Maven publication"() {
            given:
            buildFile << """
                apply plugin: 'maven-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/internal/concurrent/hashtriemap.go

    		}
    
    		// Grab the lock and double-check what we saw.
    		i.mu.Lock()
    		n = slot.Load()
    		if (n == nil || n.isEntry) && !i.dead.Load() {
    			// What we saw is still true, so we can continue with the insert.
    			break
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// N.B. This lock is held from when we broke out of the outer loop above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            wagonManager.getArtifact(artifact, repo, transferListener, false);
            assertFalse(
                    wagon.getTransferEventSupport().hasTransferListener(transferListener),
                    "Transfer listener still registered after getArtifact");
    
            /* putArtifact */
            File sampleFile = getTestFile("target/test-file");
            FileUtils.fileWrite(sampleFile.getAbsolutePath(), "sample file");
    
            assertFalse(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    Let's say the file dedicated to handling just users is the submodule at `/app/routers/users.py`.
    
    You want to have the *path operations* related to your users separated from the rest of the code, to keep it organized.
    
    But it's still part of the same **FastAPI** application/web API (it's part of the same "Python Package").
    
    You can create the *path operations* for that module using `APIRouter`.
    
    ### Import `APIRouter`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/build.go

    		//
    		// We should report other errors though. An attacker that controls the
    		// network shouldn't be able to hide versions by interfering with
    		// the HTTPS connection. An attacker that controls the proxy may still
    		// hide versions, since the "list" and "latest" endpoints are not
    		// authenticated.
    		return
    	} else if err != nil {
    		if m.Error == nil {
    			m.Error = &modinfo.ModuleError{Err: err.Error()}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                fails "block"
                failure.assertHasDescription("Execution failed for task ':block'.")
                failure.assertHasCause("Timeout has been exceeded")
            }
        }
    
        def "other tasks still run after a timeout if --continue is used"() {
            given:
            buildFile << """
                task block() {
                    doLast {
                        Thread.sleep(60000)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    				mheap_.reclaimCredit.Add(npages)
    			} else {
    				// Span is still in-use, so this returned no
    				// pages to the heap and the span needs to
    				// move to the swept in-use list.
    				npages = 0
    			}
    			break
    		}
    	}
    	sweep.active.end(sl)
    
    	if noMoreWork {
    		// The sweep list is empty. There may still be
    		// concurrent sweeps running, but we're at least very
    		// close to done sweeping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache.go

    type podState struct {
    	pod *v1.Pod
    	// Used by assumedPod to determinate expiration.
    	// If deadline is nil, assumedPod will never expire.
    	deadline *time.Time
    	// Used to block cache from expiring assumedPod if binding still runs
    	bindingFinished bool
    }
    
    func newCache(ctx context.Context, ttl, period time.Duration) *cacheImpl {
    	logger := klog.FromContext(ctx)
    	return &cacheImpl{
    		ttl:    ttl,
    		period: period,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top