Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,266 for qtext (0.04 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.cc

      return *this;
    }
    
    Renderer& Renderer::Statement(const string& text) {
      if (str_util::EndsWith(text, ";")) {
        LOG(WARNING) << "Superfluous terminating ';' in '" << text << "'";
        context_.code.AddLineWithIndent(text);
      } else {
        context_.code.AddLineWithIndent(absl::StrCat(text, ";"));
      }
      return *this;
    }
    
    Renderer& Renderer::TFStatement(const string& text) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/ResponseBodyTest.kt

        val body = text.toResponseBody()
        assertThat(body.byteString()).isEqualTo(text.encodeUtf8())
      }
    
      @Test
      fun unicodeByteStringWithCharset() {
        val text = "eile oli oliiviõli".encodeUtf8()
        val body = text.toResponseBody("text/plain; charset=EBCDIC".toMediaType())
        assertThat(body.byteString()).isEqualTo(text)
      }
    
      @Test
      fun unicodeBytes() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4K bytes
    - Viewed (1)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                subdir1 {
                    file ('file.txt').text = 'original text 1'
                }
                subdir2 {
                    file('file2.txt').text = 'original text 2'
                    file ('file3.txt').text =  'original text 3'
                }
            }
            createTar('test2.tar') {
                subdir1 {
                    file ('file.txt').text = 'original text 1' // Same name in same dir
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    TEXT	sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    // Store
    TEXT	sync∕atomic·StoreInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	MOVD	$__tsan_go_atomic32_store(SB), R9
    	BL	racecallatomic<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    	for text != "" {
    		var ln string
    		i := strings.Index(text, "\n")
    		j := strings.Index(text, "\r")
    		var nl byte
    		switch {
    		case j >= 0 && (i < 0 || j < i): // have \r, maybe \r\n
    			ln = text[:j]
    			if i == j+1 {
    				text = text[j+2:]
    				nl = '\r' + '\n'
    			} else {
    				text = text[j+1:]
    				nl = '\r'
    			}
    		case i >= 0:
    			ln, text = text[:i], text[i+1:]
    			nl = '\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

            }
        }
    
        String getGroupId() {
            pom?.groupId[0]?.text()
        }
    
        String getArtifactId() {
            pom?.artifactId[0]?.text()
        }
    
        String getVersion() {
            pom?.version[0]?.text()
        }
    
        String getPackaging() {
            pom?.packaging[0]?.text()
        }
    
        String getName() {
            pom?.name[0]?.text()
        }
    
        String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/LinePerThreadBufferingOutputStreamTest.groovy

            def outstr = new LinePerThreadBufferingOutputStream(action)
    
            when:
            outstr.write("text".bytes)
            outstr.close()
    
            then:
            1 * action.text("text")
    
            when:
            outstr.write("text".bytes)
            outstr.close()
    
            then:
            1 * action.text("text")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

        assert response.status_code == 200, response.text
        assert "https://unpkg.com/swagger-ui-dist@5/swagger-ui-bundle.js" in response.text
        assert "https://unpkg.com/swagger-ui-dist@5/swagger-ui.css" in response.text
    
    
    def test_swagger_ui_oauth2_redirect_html(client: TestClient):
        response = client.get("/docs/oauth2-redirect")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        padding-bottom: 5px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
        vertical-align: bottom;
    }
    
    th.numeric, td.numeric {
        text-align: right;
    }
    
    .empty {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    .more-detail {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    td.more-detail {
        text-align: left;
        padding-left: 0;
    }
    
    .table-row-even {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

                    into layout.buildDir.dir('foo')
                }
            """
            file('foo').text = 'bar'
    
            then:
            succeeds("foo")
            file('build/foo/foo').text == 'bar'
    
            when:
            file('foo').text = 'baz'
    
            then:
            buildTriggeredAndSucceeded()
            file('build/foo/foo').text == 'baz'
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top