Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 235 for newsize (4.72 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      // CHECK-NEXT: %[[CONST1:.*]] = "tf.Const"() <{value = dense<1> : tensor<1xi32>}> : () -> tensor<1xi32>
      // CHECK-NEXT: %[[NEW_SIZE:.*]] = "tf.AddV2"(%[[ZERO]], %[[CONST1]]) : (tensor<1xi32>, tensor<1xi32>) -> tensor<1xi32>
      %push = "tf.TensorListPushBack"(%id, %elem) : (tensor<!tf_type.variant<tensor<f32>>>, tensor<f32>) -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    				fmt.Fprint(output, "\t")
    			}
    			if cell != nil {
    				switch val := cell.(type) {
    				case string:
    					print := val
    					truncated := false
    					// Truncate at the first newline, carriage return or formfeed
    					// (treated as a newline by tabwriter).
    					breakchar := strings.IndexAny(print, "\f\n\r")
    					if breakchar >= 0 {
    						truncated = true
    						print = print[:breakchar]
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast.go

    						// This should have been checked when the file path was first resolved,
    						// but we double check here just to be sure.
    						fatalf("internal error: ParseGo: abspath contains unexpected newline character: %q", abspath)
    					}
    					f.Preamble += fmt.Sprintf("#line %d %q\n", sourceLine(cg), abspath)
    					f.Preamble += commentText(cg) + "\n"
    					f.Preamble += "#line 1 \"cgo-generated-wrapper\"\n"
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/test2json.go

    // The lineBuffer will call line(x) for any whole line x (including the final newline)
    // that fits entirely in cap(b). It will handle input lines longer than cap(b) by
    // calling part(x) for sections of the line. The line will be split at UTF8 boundaries,
    // and the final call to part for a long line includes the final newline.
    type lineBuffer struct {
    	b    []byte       // buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            when:
            execute(unitOfWork)
            def outputFilesAddedUnitOfWork = builder.withOutputFiles(*: outputFiles, newFile: temporaryFolder.createFile("output-file-2")).build()
    
            then:
            outOfDate(outputFilesAddedUnitOfWork, "Output property 'newFile' has been added for ${outputFilesAddedUnitOfWork.displayName}")
        }
    
        def "out-of-date when any output file properties are removed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/parse.go

    	if p.links == nil {
    		p.links = make(map[string]*Link)
    	}
    	p.links[label] = link
    }
    
    type line struct {
    	spaces int
    	i      int
    	tab    int
    	text   string
    	nl     byte // newline character ending this line: \r or \n or zero for EOF
    }
    
    func (p *parseState) addLine(s line) {
    	// Process continued prefixes.
    	p.lineDepth = 0
    	for ; p.lineDepth+1 < len(p.stack); p.lineDepth++ {
    		old := s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                putValue(data, "Reply-To", message.getReplyTo());
                putValue(data, "Sender", message.getSender());
                putValue(data, "Sent-Date", message.getSentDate());
                putValue(data, "Size", message.getSize());
                putValue(data, "Subject", message.getSubject());
                putValue(data, "Receipients", message.getAllRecipients());
                putValue(data, "To", message.getRecipients(Message.RecipientType.TO));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

                """,
                "$objectName.class"
            )
        }
    
        private
        fun compileScript(scriptName: String, scriptBody: String, scriptClass: String): ClassFixture {
            val sourceFile = newFile("$scriptName.kt", scriptBody)
    
            val binDir = newFolder("bin")
            compileToDirectory(
                binDir,
                KotlinCompilerOptions(),
                "test",
                listOf(sourceFile),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    		},
    		{
    			name:    "agent with space",
    			code:    299,
    			agent:   `test agent`,
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with newline",
    			code:    299,
    			agent:   "test\nagent",
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with backslash",
    			code:    299,
    			agent:   `test\agent`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. src/net/http/fs.go

    func rangesMIMESize(ranges []httpRange, contentType string, contentSize int64) (encSize int64) {
    	var w countingWriter
    	mw := multipart.NewWriter(&w)
    	for _, ra := range ranges {
    		mw.CreatePart(ra.mimeHeader(contentType, contentSize))
    		encSize += ra.length
    	}
    	mw.Close()
    	encSize += int64(w)
    	return
    }
    
    func sumRangesSize(ranges []httpRange) (size int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top