Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,409 for turning (0.1 sec)

  1. src/net/http/httputil/dump_test.go

    				"\r\nkey1=name1&key2=name2")
    		},
    		WantDump: "POST /v2/api/?login HTTP/1.1\r\n" +
    			"Host: passport.myhost.com\r\n\r\n",
    	},
    
    	// Issue 18506: make drainBody recognize NoBody. Otherwise
    	// this was turning into a chunked request.
    	{
    		Req: mustNewRequest("POST", "http://example.com/foo", http.NoBody),
    		WantDumpOut: "POST /foo HTTP/1.1\r\n" +
    			"Host: example.com\r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    King, the Queen, the royal children, and everybody else.
    
      `Leave off that!' screamed the Queen.  `You make me giddy.'
    And then, turning to the rose-tree, she went on, `What HAVE you
    been doing here?'
    
      `May it please your Majesty,' said Two, in a very humble tone,
    going down on one knee as he spoke, `we were trying--'
    
      `I see!' said the Queen, who had meanwhile been examining the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. maven-core/plugin-manager.txt

    h4. Working with POMs during development
    
    During the development of a plugin we would want to make it easy for a developer to create a plugin which means we would allow the direct use of a POM to state the dependencies of a given plugin and any tooling we created would be responsible for turning the dependency information in the POM into plugin metadata which described the dependencies of the plugin.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  4. src/html/template/js.go

    		//     semantics
    		//
    		// We also put a space before the comment so that if it is flush against
    		// a division operator it is not turned into a line comment:
    		//     x/{{y}}
    		// turning into
    		//     x//* error marshaling y:
    		//          second line of error message */null
    		errStr := err.Error()
    		errStr = strings.ReplaceAll(errStr, "*/", "* /")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

                  [INFO]    Ignored 53 units with compilation errors in first pass.
                  [INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
    
                Turning up the log level, we see that GWT is trying to compile classes from other
                packages, like RangeTest. The reason for this is that GWT doesn't distinguish between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	} else if s.BindPort < 0 || s.BindPort > 65535 {
    		errors = append(errors, fmt.Errorf("--secure-port %v must be between 0 and 65535, inclusive. 0 for turning off secure port", s.BindPort))
    	}
    
    	if (len(s.ServerCert.CertKey.CertFile) != 0 || len(s.ServerCert.CertKey.KeyFile) != 0) && s.ServerCert.GeneratedCert != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      op->setAttr("dilations", dilations_attr.value());
    
      if (expand_op) {
        // If there is `expand_op`, we need to rewire the inputs to bypass the
        // `SpaceToBatch`, `BatchToSpace` and `Pad` op. E.g, turning
        // 'SpaceToBatchND -> Expand -> Conv2D -> Squeeze -> BatchToSpaceND ->
        // BiasAdd' to 'Expand -> Conv2D ->Squeeze -> BiasAdd'.
    
        // Connect `expand_op` with the input of `stb_op`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    - Build scripts
    - System properties used during the configuration phase
    - Gradle properties used during the configuration phase
    - Environment variables used during the configuration phase
    - Configuration files accessed using value suppliers such as providers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

            expect:
            allowAllRepositoryInteractions()
            succeeds ':checkDeps'
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def 'forced platform turning selector state to force after being selected and deselected'() {
            repository {
                ['1.0', '2.0'].each {
                    path "webapp:$it -> xml:$it"
                    path "org:other:$it"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    					inst.Prefix[i] &= 0xF0FF // cut interpretation bits, producing original segment prefix
    				}
    			}
    		}
    	}
    
    	// XACQUIRE/XRELEASE adjustment.
    	if inst.Op == MOV {
    		// MOV into memory is a candidate for turning REP into XRELEASE.
    		// However, if the REP is followed by a REPN, that REPN blocks the
    		// conversion.
    		haveREPN := false
    		for i := len(inst.Prefix) - 1; i >= 0; i-- {
    			switch inst.Prefix[i] &^ PrefixIgnored {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top