Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for gooses (0.21 sec)

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

            and:
            runAndFail "resolve"
    
            then:
            failure.assertResolutionFailure(":conf").assertFailedDependencyRequiredBy("project : > org:d:1.0")
        }
    
        def "chooses highest version that is included in both ranges"() {
            given:
            (1..10).each {
                mavenRepo.module("org", "leaf", "$it").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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    The `condition` tensor acts as a mask that chooses, based on the value at each
    element, whether the corresponding element / row in the output should be
    taken from `x` (if true) or `y` (if false).
    
    If `condition` is a vector and `x` and `y` are higher rank matrices, then
    it chooses which row (outer dimension) to copy from `x` and `y`.
    If `condition` has the same shape as `x` and `y`, then it chooses which
    element to copy from `x` and `y`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. src/net/http/request.go

    // background context.
    //
    // For outgoing client requests, the context controls cancellation.
    //
    // For incoming server requests, the context is canceled when the
    // client's connection closes, the request is canceled (with HTTP/2),
    // or when the ServeHTTP method returns.
    func (r *Request) Context() context.Context {
    	if r.ctx != nil {
    		return r.ctx
    	}
    	return context.Background()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    // request and response.
    func (pc *persistConn) markReused() {
    	pc.mu.Lock()
    	pc.reused = true
    	pc.mu.Unlock()
    }
    
    // close closes the underlying TCP connection and closes
    // the pc.closech channel.
    //
    // The provided err is only for testing and debugging; in normal
    // circumstances it should never be seen by users.
    func (pc *persistConn) close(err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                    return [ fromRole, targetRole ]
                }
            }
        }
    
        def "closes inputs for mutation discovered after running action with role #targetRole"() {
            given:
            registry.registerInstance("thing", new Bean(value: "initial"))
                .configure(targetRole) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	// Since we built up the candidate lists concurrently, they may be in a
    	// nondeterministic order. We want 'go get' to be fully deterministic,
    	// including in which errors it chooses to report, so sort the candidates
    	// into a deterministic-but-arbitrary order.
    	for _, q := range r.patternAllQueries {
    		sort.Slice(q.candidates, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    		recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
    		if err := c.readRecord(); err != nil {
    			return n, err // will be io.EOF on closeNotify
    		}
    	}
    
    	return n, nil
    }
    
    // Close closes the connection.
    func (c *Conn) Close() error {
    	// Interlock with Conn.Write above.
    	var x int32
    	for {
    		x = c.activeCall.Load()
    		if x&1 != 0 {
    			return net.ErrClosed
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

         */
        public DefaultServiceRegistry addProvider(ServiceRegistrationProvider provider) {
            assertMutable();
            findProviderMethods(provider);
            return this;
        }
    
        /**
         * Closes all services for this registry. For each service, if the service has a public void close() or stop() method, that method is called to close the service.
         */
        @Override
        public void close() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
            def service1 = Mock(TestCloseService)
            def service2 = Mock(TestStopService)
            def service3 = Mock(CloseableService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	AssignedPodAdded(logger klog.Logger, pod *v1.Pod)
    	AssignedPodUpdated(logger klog.Logger, oldPod, newPod *v1.Pod)
    	PendingPods() ([]*v1.Pod, string)
    	PodsInActiveQ() []*v1.Pod
    	// Close closes the SchedulingQueue so that the goroutine which is
    	// waiting to pop items can exit gracefully.
    	Close()
    	// Run starts the goroutines managing the queue.
    	Run(logger klog.Logger)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top