Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for readArg (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For any other situation, keep reading.
    
    [TIP]
    ====
    When publishing plugins, please use Gradle's built-in <<java_gradle_plugin#java_gradle_plugin,Gradle Plugin Development Plugin>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    // See expectFail and -f flag.
    func (t test) run() error {
    	srcBytes, err := os.ReadFile(filepath.Join(t.gorootTestDir, t.goFileName()))
    	if err != nil {
    		t.Fatal("reading test case .go file:", err)
    	} else if bytes.HasPrefix(srcBytes, []byte{'\n'}) {
    		t.Fatal(".go file source starts with a newline")
    	}
    	src := string(srcBytes)
    
    	// Execution recipe is contained in a comment in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	}
    }
    
    // readXLMetaNoData will load the metadata, but skip data segments.
    // This should only be used when data is never interesting.
    // If data is not xlv2, it is returned in full.
    func readXLMetaNoData(r io.Reader, size int64) ([]byte, error) {
    	initial := size
    	hasFull := true
    	if initial > metaDataReadDefault {
    		initial = metaDataReadDefault
    		hasFull = false
    	}
    
    	buf := metaDataPoolGet()[:initial]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    				copy(h.allArenas, oldSlice)
    				// Do not free the old backing array because
    				// there may be concurrent readers. Since we
    				// double the array each time, this can lead
    				// to at most 2x waste.
    			}
    			h.allArenas = h.allArenas[:len(h.allArenas)+1]
    			h.allArenas[len(h.allArenas)-1] = ri
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // empty there is no information available.
      // +optional
      optional string reason = 1;
    
      // A human-readable description of the cause of the error.  This field may be
      // presented as-is to a reader.
      // +optional
      optional string message = 2;
    
      // The field of the resource that has caused this error, as named by its JSON
      // serialization. May include dot and postfix notation for nested attributes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // empty there is no information available.
      // +optional
      optional string reason = 1;
    
      // A human-readable description of the cause of the error.  This field may be
      // presented as-is to a reader.
      // +optional
      optional string message = 2;
    
      // The field of the resource that has caused this error, as named by its JSON
      // serialization. May include dot and postfix notation for nested attributes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			in:   func() string { return "" },
    			want: "",
    		},
    		{
    			name: "valid certificate authority",
    			in: func() string {
    				caPrivateKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    				if err != nil {
    					t.Fatal(err)
    				}
    				caCert, err := certutil.NewSelfSignedCACert(certutil.Config{CommonName: "test-ca"}, caPrivateKey)
    				if err != nil {
    					t.Fatal(err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Read(fd Handle, p []byte) (n int, err error) {
    	var done uint32
    	e := ReadFile(fd, p, &done, nil)
    	if e != nil {
    		if e == ERROR_BROKEN_PIPE {
    			// NOTE(brainman): work around ERROR_BROKEN_PIPE is returned on reading EOF from stdin
    			return 0, nil
    		}
    		return 0, e
    	}
    	return int(done), nil
    }
    
    func Write(fd Handle, p []byte) (n int, err error) {
    	if raceenabled {
    		raceReleaseMerge(unsafe.Pointer(&ioSync))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Fixed a bug in the JSON frame reader that could cause it to retain a reference to the underlying array of the byte slice passed to Read. ([#123620](https://github.com/kubernetes/kubernetes/pull/123620), [@benluddy](https://github.com/benluddy)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. okhttp/api/okhttp.api

    	public fun <init> ()V
    	public final fun byteStream ()Ljava/io/InputStream;
    	public final fun byteString ()Lokio/ByteString;
    	public final fun bytes ()[B
    	public final fun charStream ()Ljava/io/Reader;
    	public fun close ()V
    	public abstract fun contentLength ()J
    	public abstract fun contentType ()Lokhttp3/MediaType;
    	public static final fun create (Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/ResponseBody;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top