Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for Roll (0.42 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

            if (type instanceof TypeVariable) {
                Type nextType;
                Queue<Type> queue = new ArrayDeque<>();
                queue.add(type);
                while ((nextType = queue.poll()) != null) {
                    for (Type bound : ((TypeVariable<?>) nextType).getBounds()) {
                        if (bound instanceof TypeVariable) {
                            queue.add(bound);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    		return nil, false, nil
    	}
    
    	return encryptionConfiguration, true, nil
    }
    
    // minKMSPluginCloseGracePeriod can be lowered in unit tests to make the health check poll faster
    var minKMSPluginCloseGracePeriod = 10 * time.Second
    
    func (d *DynamicEncryptionConfigContent) validateNewTransformersHealth(
    	ctx context.Context,
    	kmsPluginHealthzCheck healthz.HealthChecker,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/net/net.go

    func (e *DNSError) Temporary() bool { return e.IsTimeout || e.IsTemporary }
    
    // errClosed exists just so that the docs for ErrClosed don't mention
    // the internal package poll.
    var errClosed = poll.ErrNetClosing
    
    // ErrClosed is the error returned by an I/O call on a network
    // connection that has already been closed, or that is closed by
    // another goroutine before the I/O is completed. This may be wrapped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	# OS includes string routines, but those must be layered above package os.
    	# OS does not include reflection.
    	io/fs
    	< internal/testlog
    	< internal/poll
    	< internal/filepathlite
    	< os
    	< os/signal;
    
    	io/fs
    	< embed;
    
    	unicode, fmt !< net, os, os/signal;
    
    	os/signal, internal/filepathlite, STR
    	< path/filepath
    	< io/ioutil;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

            } finally {
                sharedContext.add(httpContext);
            }
        }
    
        private HttpContext nextAvailableSharedContext() {
            HttpContext context = sharedContext.poll();
            if (context == null) {
                return new BasicHttpContext();
            }
            return context;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    	data="syscall.Close"
    String id=137
    	data="internal/poll.(*SysFile).destroy"
    String id=138
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unixjs.go"
    String id=139
    	data="internal/poll.(*FD).destroy"
    String id=140
    	data="internal/poll.(*FD).decref"
    String id=141
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_mutex.go"
    String id=142
    	data="internal/poll.(*FD).Close"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                        }
                    }
                }
    
                ${buildFinishedCall('build-finished')}
            """
        }
    
        void assertHasBuildPhase(String message) {
            ConcurrentTestUtil.poll {
                assert gradle.standardOutput =~ regexFor(message)
            }
        }
    
        String regexFor(String message) {
            /<.*> $message \[[\dms ]+]/
        }
    
        void waitForFinish() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

                }
            }
    
            public Object take(long timeoutValue, TimeUnit timeoutUnits) {
                Object result;
                try {
                    result = queue.poll(timeoutValue, timeoutUnits);
                } catch (InterruptedException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
                if (result instanceof Throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            def testFile = file("modtime").touch()
            def originalTime = testFile.lastModified()
            when:
            // Zip file time resolution is 2 seconds
            ConcurrentTestUtil.poll {
                testFile.touch()
                assert (testFile.lastModified() - originalTime) >= 2000L
            }
            run "wrapper", "--gradle-version", "2.2.1", "--rerun-tasks", "--no-validate-url"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. docs/en/data/external_links.yml

    f765-4470-a15f-1901fcebb468 title: How to monitor FastAPI application performance using Python agent - author: Jean-Baptiste Rocher author_link: https://hashnode.com/@jibrocher link: https://dev.indooroutdoor.io/series/fastapi-react-poll-app title: Building the Poll App From Django Tutorial With FastAPI And React - author: Silvan Melchior author_link: https://github.com/silvanmelchior link: https://blog.devgenius.io/seamless-fastapi-configuration-with-confz-90949c14ea12 title: Seamless FastAPI Configuration...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top