Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for Concatenates (0.7 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        frame.writeAll(headerBlock)
    
        // Check writer sends the same bytes.
        assertThat(sendHeaderFrames(false, sentHeaders)).isEqualTo(frame)
    
        // Reading the above frames should result in a concatenated headerBlock.
        reader.nextFrame(
          requireSettings = false,
          object : BaseTestHandler() {
            override fun headers(
              inFinished: Boolean,
              streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/script/cmds.go

    			return []int{i}
    		}
    		if arg == "--" {
    			return []int{i + 1}
    		}
    	}
    	return nil
    }
    
    // Cat writes the concatenated contents of the named file(s) to the script's
    // stdout buffer.
    func Cat() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "concatenate files and print to the script's stdout buffer",
    			Args:    "files...",
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    			value = bindingAnnotations[0]
    		} else {
    			// Multiple distinct values can exist when binding params are used in the valueExpression of an auditAnnotation.
    			// When this happens, the values are concatenated into a comma-separated list.
    			value = strings.Join(bindingAnnotations, ", ")
    		}
    		if err := attributes.AddAnnotation(policyName+"/"+key, value); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/os/os_unix_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf, err := ReadFile(aa.Name())
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if got := string(buf); got != want {
    		t.Errorf("files not concatenated: got %q, want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/net/http/response.go

    	Proto      string // e.g. "HTTP/1.0"
    	ProtoMajor int    // e.g. 1
    	ProtoMinor int    // e.g. 0
    
    	// Header maps header keys to values. If the response had multiple
    	// headers with the same key, they may be concatenated, with comma
    	// delimiters.  (RFC 7230, section 3.2.2 requires that multiple headers
    	// be semantically equivalent to a comma-delimited sequence.) When
    	// Header values are duplicated by other fields in this struct (e.g.,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

      auto concat_result_type = RankedTensorType::get(
          {static_cast<int32_t>(
               dot_dimensions_info.batch_dimensions().AxesArray().size()) +
           2},
          builder.getIntegerType(32));
      // Concatenate the batch dimensions, flattened out dimension and flattened
      // contracting dimension.
      return builder.create<TFL::ConcatenationOp>(
          concat_result_type, flattend_shape_values, /*axis*/ 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    		in.PrintText(&buf)
    	}
    	return buf.String()
    }
    
    // Merge combines the markdown documents (files ending in ".md") in the tree rooted
    // at fs into a single document.
    // The blocks of the documents are concatenated in lexicographic order by filename.
    // Heading with no content are removed.
    // The link keys must be unique, and are combined into a single map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    				return 0, br.err
    			}
    			if bz2.fileCRC != wantFileCRC {
    				br.err = StructuralError("file checksum mismatch")
    				return 0, br.err
    			}
    
    			// Skip ahead to byte boundary.
    			// Is there a file concatenated to this one?
    			// It would start with BZ.
    			if br.bits%8 != 0 {
    				br.ReadBits(br.bits % 8)
    			}
    			b, err := br.r.ReadByte()
    			if err == io.EOF {
    				br.err = io.EOF
    				bz2.eof = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            }
        }
    
        /**
         * Resolves the given expression to zero or more expressions that have been macro expanded and token concatenated.
         */
        private Collection<Expression> resolveExpressionToTokens(MacroLookup visibleMacros, Expression expression, ExpressionVisitor visitor, TokenLookup tokenLookup) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    	$ WORK=/tmp/cmd-go-test-745953508/script-install_rebuild_gopath
    	$ cd $WORK/d1/src/p1
    	$ cat p1.go
    	package p1
    	import "p2"
    	func F() { p2.F() }
    	$
    
    The available commands are:
    cat files...
    	concatenate files and print to the script's stdout buffer
    
    
    cc args...
    	run the platform C compiler
    
    
    cd dir
    	change the working directory
    
    
    chmod perm paths...
    	change file mode bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top