Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,057 for ACCEPT (0.37 sec)

  1. src/net/sendfile_test.go

    	defer w.Close()
    	defer r.Close()
    
    	copied := make(chan bool)
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		// Accept a connection and copy 1 byte from the read end of
    		// the pipe to the connection. This will call into sendfile.
    		defer wg.Done()
    		conn, err := ln.Accept()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Accept} header field name. */
      public static final String ACCEPT = "Accept";
      /** The HTTP {@code Accept-Charset} header field name. */
      public static final String ACCEPT_CHARSET = "Accept-Charset";
      /** The HTTP {@code Accept-Encoding} header field name. */
      public static final String ACCEPT_ENCODING = "Accept-Encoding";
      /** The HTTP {@code Accept-Language} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Accept} header field name. */
      public static final String ACCEPT = "Accept";
      /** The HTTP {@code Accept-Charset} header field name. */
      public static final String ACCEPT_CHARSET = "Accept-Charset";
      /** The HTTP {@code Accept-Encoding} header field name. */
      public static final String ACCEPT_ENCODING = "Accept-Encoding";
      /** The HTTP {@code Accept-Language} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                    String previousWatchedRoot = watchedDirectoryForSnapshot.remove(snapshot.getAbsolutePath());
                    decrement(previousWatchedRoot, changedWatchedDirectories);
                    snapshot.accept(new SubdirectoriesToWatchVisitor(path -> decrement(path, changedWatchedDirectories)));
                });
            addedSnapshots.stream()
                .filter(watchableHierarchies::shouldWatch)
                .forEach(snapshot -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/net/timeout_test.go

    				afterDial = time.Now()
    
    				if err != nil {
    					break
    				}
    
    				// Even though we're not calling Accept on the Listener, the kernel may
    				// spuriously accept connections on its behalf. If that happens, we will
    				// close the connection (to try to get it out of the kernel's accept
    				// queue) and try a shorter timeout.
    				//
    				// We assume that we will reach a point where the call actually does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultResolvedVersionConstraint.java

            if (requiredVersionSelector != null) {
                accepted = requiredVersionSelector.accept(candidate);
            } else if (preferredVersionSelector != null) {
                accepted = preferredVersionSelector.accept(candidate);
            }
            if (accepted && rejectedVersionsSelector != null) {
                accepted = !rejectedVersionsSelector.accept(candidate);
            }
            return accepted;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

            connection.startListening(connectionArgs)
    
            if (acceptAsync) {
                Thread.start {
                    accept()
                }
            }
        }
    
        def accept() {
            while (vm == null) {
                try {
                    vm = connection.accept(connectionArgs)
                    connection = null
                } catch (Exception e) {
                }
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedServer.java

            this.connector = connector;
            this.executorFactory = executorFactory;
        }
    
        @Override
        public ConnectionAcceptor accept(Action<ObjectConnection> action) {
            return connector.accept(new ConnectEventAction(action), false);
        }
    
        private class ConnectEventAction implements Action<ConnectCompletion> {
            private final Action<ObjectConnection> action;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantDependentsConsumer.java

         *     public static final int CALCULATE_ACCESSIBLE_CONSTANT = CONSTANT;
         * }
         */
        public void consumeAccessibleDependent(String constantOrigin, String constantDependent) {
            accessibleDependentDelegate.accept(constantOrigin, constantDependent);
        }
    
        /**
         * Consume "private" dependents of a constant.
         *
         * Example of private constant dependent:
         * class A {
         *     public static int method() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

        def userInputHandler = new NonInteractiveUserInputHandler()
    
        def "always returns null for yes/no question"() {
            expect:
            userInputHandler.askYesNoQuestion('Accept license?') == null
            userInputHandler.askUser { it.askYesNoQuestion('Accept license?') }.getOrNull() == null
        }
    
        def "always returns default for select question"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top