Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 653 for copied32 (0.27 sec)

  1. src/net/sendfile_linux.go

    )
    
    const supportsSendfile = true
    
    // sendFile copies the contents of r to c using the sendfile
    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var remain int64 = 1<<63 - 1 // by default, copy until EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tools/build-kind-image.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script builds a multi-arch kind node image
    # Largely copied from https://github.com/kubernetes-sigs/kind/blob/2a1e9df91fd22d6ae5b91648b6c1a606ab4cdf30/hack/release/build/push-node.sh
    # Example usage: `tools/build-kind-image.sh ~/go/src/k8s.io/kubernetes gcr.io/istio-testing/kind-node:v1.23.4`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

        public boolean copyTo(File target) {
            if (filterChain.hasFilters()) {
                return super.copyTo(target);
            } else {
                final boolean copied = fileDetails.copyTo(target);
                adaptPermissions(target);
                return copied;
            }
        }
    
        private void adaptPermissions(File target) {
            int specMode = this.getPermissions().toUnixNumeric();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/DefaultJansiRuntimeResolver.java

    package org.gradle.internal.nativeintegration.jansi;
    
    import java.util.Locale;
    
    import static org.gradle.internal.nativeintegration.jansi.JansiOperatingSystemSupport.*;
    
    /**
     * Portions of this class have been copied from org.fusesource.hawtjni.runtime.Library.java,
     * a class available in the project HawtJNI licensed with Eclipse Public License v1.0.
     *
     * @see <a href="https://github.com/fusesource/hawtjni">HawtJNI</a>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/main/webapp/js/search.js

        e.trigger.classList.remove("far");
        e.trigger.classList.remove("fa-copy");
        e.trigger.classList.add("url-copied");
        e.trigger.classList.add("fas");
        e.trigger.classList.add("fa-check");
        setTimeout(function(){
          e.trigger.classList.remove("url-copied");
          e.trigger.classList.remove("fas");
          e.trigger.classList.remove("fa-check");
          e.trigger.classList.add("url-copy");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/mod/sumdb/cache.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Parallel cache.
    // This file is copied from cmd/go/internal/par.
    
    package sumdb
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    // parCache runs an action once per key and caches the result.
    type parCache struct {
    	m sync.Map
    }
    
    type cacheEntry struct {
    	done   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/dialer_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package status
    
    import (
    	"net"
    	"syscall"
    )
    
    // copied from https://github.com/kubernetes/kubernetes/blob/v1.27.0-alpha.1/pkg/probe/dialer_others.go#L27
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/dialer_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package status
    
    import (
    	"net"
    	"syscall"
    )
    
    // copied from https://github.com/kubernetes/kubernetes/blob/v1.27.0-alpha.1/pkg/probe/dialer_windows.go#L27
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. maven-slf4j-provider/src/site/apt/index.apt

     Color is managed by <<<MavenSimpleLogger>>>, created by <<<MavenSimpleLoggerFactory>>>, and injected by <<<StaticLoggerBinder>>>: everything else is
     copied at build time from {{{https://www.slf4j.org/api/org/slf4j/simple/SimpleLogger.html}SLF4J Simple}}
    
    * See Also
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue15747.go

    package p
    
    var global *[]byte
    
    type Q struct{}
    
    type T struct{ M string }
    
    var b bool
    
    func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at entry to f1: xx$"
    	// xx was copied from the stack to the heap on the previous line:
    	// xx was live for the first two prints but then it switched to &xx
    	// being live. We should not see plain xx again.
    	if b {
    		global = &xx
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top