Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 852 for haninge (0.14 sec)

  1. src/net/mptcpsock_linux_test.go

    		}
    	} else {
    		if lc.MultipathTCP() {
    			t.Error("MultipathTCP should be off by default")
    		}
    
    		lc.SetMultipathTCP(true)
    		if !lc.MultipathTCP() {
    			t.Fatal("MultipathTCP is not on after having been forced to on")
    		}
    	}
    
    	ln, err := lc.Listen(context.Background(), "tcp", "127.0.0.1:0")
    	if err != nil {
    		t.Fatal(err)
    	}
    	return ln
    }
    
    func postAcceptMPTCP(ls *localServer, ch chan<- error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 00:36:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

        /**
         * Module exclude for dependencies having single artifact by using a combination of exclude rules.
         *
         * Dependency graph:
         * a -> b, c
         */
        def "module exclude having single artifact with #name"() {
            given:
            ivyRepo.module('b').publish()
            ivyRepo.module('c').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/FinishEvent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events;
    
    /**
     * An event that informs about an operation having finished its execution.
     *
     * @since 2.4
     */
    public interface FinishEvent extends ProgressEvent {
    
        /**
         * Returns the result of the finished operation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 971 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            then:
            1 * dependencyLockingProvider.loadLockState(lockId, _) >> lockState
            1 * lockState.mustValidateLockState() >> false
            0 * _
        }
    
        def 'processes node having a ModuleComponentIdentifier'() {
            given:
            startWithState([])
    
            DependencyGraphNode node = Mock()
            DependencyGraphComponent component = Mock()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            e.message == 'Service ListenerManager with implementation DefaultListenerManager implements AnnotatedServiceLifecycleHandler but is not declared as a service of this type. This service is declared as having type ListenerManager.'
        }
    
        def "fails when listener manager factory is not declared as annotation handler"() {
            given:
            def services = new DefaultServiceRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. docs/en/docs/reference/status.md

    For example:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * etc.
    
    It can be convenient to quickly access HTTP (and WebSocket) status codes in your app, using autocompletion for the name without having to remember the integer status codes by memory.
    
    Read more about it in the [FastAPI docs about Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/).
    
    ## Example
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 871 bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Network.java

       *       involving {@code view} will throw)
       *   <li>{@code hashCode()} does not throw
       *   <li>if {@code node} is re-added to the network after having been removed, {@code view}'s
       *       behavior is undefined
       * </ul>
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this network
       */
      Set<N> adjacentNodes(N node);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/html/template/template_test.go

    		t.Errorf("ParseFiles: %v\nwanted error about already having Executed", err)
    	}
    	if _, err := c.root.ParseGlob("*.no.template"); err == nil || !strings.Contains(err.Error(), "Execute") {
    		t.Errorf("ParseGlob: %v\nwanted error about already having Executed", err)
    	}
    	if _, err := c.root.AddParseTree("t1", c.root.Tree); err == nil || !strings.Contains(err.Error(), "Execute") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version.go

    	"fmt"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type GroupResource struct {
    	Group    string `json:"group" protobuf:"bytes,1,opt,name=group"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 04 09:55:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.transform;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a transform operation having started its execution.
     *
     * @since 5.1
     */
    public interface TransformStartEvent extends TransformProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 901 bytes
    - Viewed (0)
Back to top