Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for makeLink (0.17 sec)

  1. pkg/volume/util/subpath/subpath_windows_test.go

    limitations under the License.
    */
    
    package subpath
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    )
    
    func makeLink(link, target string) error {
    	if output, err := exec.Command("cmd", "/c", "mklink", "/D", link, target).CombinedOutput(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline_test.go

    				}
    
    				// verify that the audit event from the request context is written to the audit sink.
    				if len(fakeSink.events) != 1 {
    					t.Fatalf("expected audit sink to have 1 event, but got: %d", len(fakeSink.events))
    				}
    				auditEventFromSink := fakeSink.events[0]
    				if !reflect.DeepEqual(auditEventGot, auditEventFromSink) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/DuplexTest.kt

              .url(server.url("/"))
              .post(AsyncRequestBody())
              .build(),
          )
        call.execute().use { response ->
          val requestBody = (call.request().body as AsyncRequestBody?)!!.takeSink()
          requestBody.writeUtf8("request A\n")
          requestBody.flush()
          val responseBody = response.body.source()
          assertThat(responseBody.readUtf8Line())
            .isEqualTo("response B")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/go/constant/value.go

    		case token.ADD:
    			if !is63bit(a) || !is63bit(b) {
    				return makeInt(newInt().Add(big.NewInt(a), big.NewInt(b)))
    			}
    			c = a + b
    		case token.SUB:
    			if !is63bit(a) || !is63bit(b) {
    				return makeInt(newInt().Sub(big.NewInt(a), big.NewInt(b)))
    			}
    			c = a - b
    		case token.MUL:
    			if !is32bit(a) || !is32bit(b) {
    				return makeInt(newInt().Mul(big.NewInt(a), big.NewInt(b)))
    			}
    			c = a * b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/internal/duplex/AsyncRequestBody.kt

      override fun writeTo(sink: BufferedSink) {
        requestBodySinks.add(sink)
      }
    
      override fun isDuplex(): Boolean = true
    
      @Throws(InterruptedException::class)
      fun takeSink(): BufferedSink {
        return requestBodySinks.poll(5, SECONDS) ?: throw AssertionError("no sink to take")
      }
    
      fun assertNoMoreSinks() {
        assertTrue(requestBodySinks.isEmpty())
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/html/template/error.go

    	//   instances, where the predefined escaper occurs in the middle of a
    	//   pipeline where subsequent commands expect escaped input, e.g.
    	//     {{.X | html | makeALink}}
    	//   where makeALink does
    	//     return `<a href="`+input+`">link</a>`
    	//   consider refactoring the surrounding template to make use of the
    	//   contextual autoescaper, i.e.
    	//     <a href="{{.X}}">link</a>
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/ServerTruncatesRequestTest.kt

              body = requestBody,
            ),
          )
    
        call.execute().use { response ->
          assertThat(response.body.string()).isEqualTo("abc")
          val requestBodyOut = requestBody.takeSink()
          assertFailsWith<IOException> {
            SlowRequestBody.writeTo(requestBodyOut)
          }
          assertFailsWith<IOException> {
            requestBodyOut.close()
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/reflect/value.go

    // convertOp: intXX -> [u]intXX
    func cvtInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(v.Int()), t)
    }
    
    // convertOp: uintXX -> [u]intXX
    func cvtUint(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), v.Uint(), t)
    }
    
    // convertOp: floatXX -> intXX
    func cvtFloatInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(int64(v.Float())), t)
    }
    
    // convertOp: floatXX -> uintXX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top