Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 492 for unpipe (0.57 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    ====
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-unzip/kotlin",files="build.gradle.kts[tags=artifact-transform-unzip]"]
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-unzip/groovy",files="build.gradle[tags=artifact-transform-unzip]"]
    ====
    <1> Use `TransformParameters.None` if the transform does not use parameters
    <2> Inject the input artifact
    <3> Request an output location for the unzipped files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/runtime/pinner_test.go

    	p2 := &p
    	assertCgoCheckPanics(t, p2)
    	pinner.Pin(p)
    	runtime.CgoCheckPointer(p2, true)
    	pinner.Unpin()
    	assertCgoCheckPanics(t, p2)
    	pinner.Pin(p)
    	runtime.CgoCheckPointer(p2, true)
    	pinner.Unpin()
    }
    
    func TestPinnerEmptyUnpin(t *testing.T) {
    	var pinner runtime.Pinner
    	pinner.Unpin()
    	pinner.Unpin()
    }
    
    func TestPinnerLeakPanics(t *testing.T) {
    	old := runtime.GetPinnerLeakPanic()
    	func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:36:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util_windows_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cmd
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:45:16 UTC 2023
    - 687 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_windows.go

    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 11:33:30 UTC 2023
    - 879 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-unzip/groovy/build.gradle

            }
    // tag::artifact-transform-unzip[]
        }
    }
    // end::artifact-transform-unzip[]
    
    def usage = Attribute.of('usage', String)
    // tag::artifact-transform-registration[]
    def artifactType = Attribute.of('artifactType', String)
    
    dependencies {
        registerTransform(Unzip) {
            from.attribute(artifactType, 'jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/internal/poll/splice_linux_test.go

    	for i := 0; i < N; i++ {
    		p, err = poll.GetPipe()
    		if err != nil {
    			t.Skipf("failed to create pipe due to error(%v), skip this test", err)
    		}
    		_, pwfd := poll.GetPipeFds(p)
    		allFDs = append(allFDs, pwfd)
    		pendingFDs.Store(pwfd, struct{}{})
    		ps = append(ps, p)
    	}
    	for _, p = range ps {
    		poll.PutPipe(p)
    	}
    	ps = nil
    	p = nil
    
    	// Exploit the timeout of "go test" as a timer for the subsequent verification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // size does not match its declared size).
    //
    // dir may or may not exist: Unzip will create it and any missing parent
    // directories if it doesn't exist. If dir exists, it must be empty.
    func Unzip(dir string, m module.Version, zipFile string) (err error) {
    	defer func() {
    		if err != nil {
    			err = &zipError{verb: "unzip", path: zipFile, err: err}
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

                    }
                }
    
                """
            then:
            succeeds('customDistZip')
            and:
            file('build/distributions/TestProject-custom.zip').usingNativeTools().unzipTo(file("unzip"))
            file("unzip/TestProject-custom/someFile").assertIsFile()
        }
    
        def "can publish distribution"() {
            when:
            buildFile << """
                apply plugin:'distribution'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/internal/poll/sendfile_windows.go

    	defer func() {
    		TestHookDidSendFile(fd, 0, written, err, written > 0)
    	}()
    	if fd.kind == kindPipe {
    		// TransmitFile does not work with pipes
    		return 0, syscall.ESPIPE
    	}
    	if ft, _ := syscall.GetFileType(src); ft == syscall.FILE_TYPE_PIPE {
    		return 0, syscall.ESPIPE
    	}
    
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    
    	o := &fd.wop
    	o.handle = src
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // content.
      //
      // Unlike wcscmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
    
      // Compares two C strings, ignoring case.  Returns true iff they
      // have the same content.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top