Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 573 for unpipe (0.25 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/kotlin/settings.gradle.kts

    rootProject.name = "artifact-transforms-unzip"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/groovy/settings.gradle

    rootProject.name = 'artifact-transforms-unzip'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47 bytes
    - Viewed (0)
  3. pkg/kubelet/util/util_windows_test.go

    	}{
    		{
    			path:             "/var/lib/kubelet/pod-resources",
    			file:             "kube.sock", // this is not the default, but it's not relevant here
    			expectError:      false,
    			expectedFullPath: `npipe://\\.\pipe\kubelet-pod-resources`,
    		},
    	}
    	for _, test := range tests {
    		fullPath, err := LocalEndpoint(test.path, test.file)
    		if test.expectError {
    			assert.NotNil(t, err, "expected error")
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    	}
    	if isData {
    		j.symType = "DATA"
    	}
    
    	var err error
    	if j.in, err = j.cmd.StdinPipe(); err != nil {
    		return nil, err
    	}
    
    	outPipe, err := j.cmd.StdoutPipe()
    	if err != nil {
    		return nil, err
    	}
    
    	j.out = bufio.NewReader(outPipe)
    	if err := j.cmd.Start(); err != nil {
    		return nil, err
    	}
    
    	a := &llvmSymbolizer{
    		filename: file,
    		rw:       j,
    		base:     base,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/MockResponseBody.kt

     * limitations under the License.
     *
     */
    package mockwebserver3
    
    import java.io.IOException
    import okhttp3.ExperimentalOkHttpApi
    import okio.BufferedSink
    
    /**
     * The body of a [MockResponse].
     *
     * Unlike [okhttp3.ResponseBody], this interface is designed to be implemented by writers and not
     * called by readers.
     */
    @ExperimentalOkHttpApi
    interface MockResponseBody {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/debug.go

    // expressions involving multiple call injections.
    func debugPinnerV1() *Pinner {
    	p := new(Pinner)
    	p.Pin(unsafe.Pointer(p))
    	if debugPinnerKeepUnpin {
    		// Make Unpin reachable.
    		p.Unpin()
    	}
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleListener.java

     */
    
    package org.gradle.process.internal;
    
    import org.gradle.process.ExecResult;
    
    public interface ExecHandleListener {
        /**
         * Called before the execution of the ExecHandle starts. Unlike {@link #executionStarted(ExecHandle)}, this method is called synchronously from {@link ExecHandle#start()}.
         *
         * @param execHandle the handle that is about to start
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Closeables.java

       * I/O resource, it should generally be safe in the case of a resource that's being used only for
       * reading, such as an {@code InputStream}. Unlike with writable resources, there's no chance that
       * a failure that occurs when closing the stream indicates a meaningful problem such as a failure
       * to flush all bytes to the underlying resource.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ImageServiceEndpoint, "image-service-endpoint", c.ImageServiceEndpoint, "The endpoint of container image service. If not specified, it will be the same with --container-runtime-endpoint by default. Unix Domain Socket are supported on Linux, while npipe and tcp endpoints are supported on Windows. Examples...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register.go

    var Codecs = serializer.NewCodecFactory(scheme)
    
    // ParameterCodec handles versioning of objects that are converted to query parameters.
    var ParameterCodec = runtime.NewParameterCodec(scheme)
    
    // Unlike other API groups, meta internal knows about all meta external versions, but keeps
    // the logic for conversion private.
    func init() {
    	utilruntime.Must(internalversion.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 12 17:32:02 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top