Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for pusha (1.07 sec)

  1. src/net/http/request.go

    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    	// of Pusher implementations to indicate that HTTP/2 Push support
    	// is not available.
    	ErrNotSupported = &ProtocolError{"feature not supported"}
    
    	// Deprecated: ErrUnexpectedTrailer is no longer returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    		}
    		if nMarks > n {
    			// We're done.
    			unlock(&work.sweepWaiters.lock)
    			return
    		}
    
    		// Wait until sweep termination, mark, and mark
    		// termination of cycle N complete.
    		work.sweepWaiters.list.push(getg())
    		goparkunlock(&work.sweepWaiters.lock, waitReasonWaitForGCCycle, traceBlockUntilGCEnds, 1)
    	}
    }
    
    // gcMode indicates how concurrent a GC cycle should be.
    type gcMode int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import static org.apache.maven.cli.CLIManager.FORCE_INTERACTIVE;
    import static org.apache.maven.cli.CLIManager.NON_INTERACTIVE;
    import static org.apache.maven.cli.ResolveFile.resolveFile;
    
    // TODO push all common bits back to plexus cli and prepare for transition to Guice. We don't need 50 ways to make CLIs
    
    /**
     */
    public class MavenCli {
        public static final String LOCAL_REPO_PROPERTY = "maven.repo.local";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. .bazelrc

    # Use --config=tf_public_cache to try and use the TensorFlow public build cache
    # to build TensorFlow. Look at ci/official/envs to find which types of jobs
    # push to the cache.  For macOS, use --config=tf_public_macos_cache
    build:tf_public_cache --remote_cache="https://storage.googleapis.com/tensorflow-devinfra-bazel-cache/january2024" --remote_upload_local_results=false
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      }
    
      @Test fun peerHttp2ClientDisablesPush() {
        val client = false // Peer is client, so we are server.
        val settings = Settings()
        settings[Settings.ENABLE_PUSH] = 0 // The peer client disables push.
        val connection = connectWithSettings(client, settings)
    
        // verify the peer's settings were read and applied.
        assertThat(connection.peerSettings.getEnablePush(true)).isFalse()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_OS_WINDOWS
    
    // Functions deprecated by MSVC 8.0.
    
    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. src/runtime/map.go

    				}
    				if t.IndirectElem() {
    					*(*unsafe.Pointer)(dst.e) = *(*unsafe.Pointer)(e)
    				} else {
    					typedmemmove(t.Elem, dst.e, e)
    				}
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    				// at the end of the bucket to protect against pointing past the
    				// end of the bucket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                const char* actual_expression,
                                const T1& expected,
                                const T2& actual) {
    #ifdef _MSC_VER
    # pragma warning(push)          // Saves the current warning state.
    # pragma warning(disable:4389)  // Temporarily disables warning on
                                    // signed/unsigned mismatch.
    #endif
    
      if (expected == actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                                const char* actual_expression,
                                const T1& expected,
                                const T2& actual) {
    #ifdef _MSC_VER
    # pragma warning(push)          // Saves the current warning state.
    # pragma warning(disable:4389)  // Temporarily disables warning on
                                    // signed/unsigned mismatch.
    #endif
    
      if (expected == actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	code := st.str[:2]
    	st.advance(2)
    	if code[0] == 'v' && isDigit(code[1]) {
    		name := st.sourceName()
    		return &Operator{Name: name.(*Name).Name}, int(code[1] - '0')
    	} else if code == "cv" {
    		// Push a nil on templates to indicate that template
    		// parameters will have their template filled in
    		// later.
    		if !inExpression {
    			st.templates = append(st.templates, nil)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top