Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,629 for ncopied (0.25 sec)

  1. test/copy.go

    	n := ncopied(length, in, out)
    	if m != n {
    		fmt.Printf("count bad(%d %d %d): %d not %d\n", length, in, out, m, n)
    		os.Exit(1)
    		return
    	}
    	// before
    	var i int
    	for i = 0; i < out; i++ {
    		if outputS[i] != u8(i+13) {
    			badS("beforeS", i, length, in, out)
    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if outputS[i] != u8(i+in-out) {
    			badS("copiedS", i, length, in, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/ScopeId.java

                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
    
            ScopeId scopeId = (ScopeId) o;
    
            return id.equals(scopeId.id);
        }
    
        @Override
        public int hashCode() {
            return id.hashCode();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 12 00:24:17 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/subst.go

    		}
    
    	case *Union:
    		terms, copied := subst.termlist(t.terms)
    		if copied {
    			// term list substitution may introduce duplicate terms (unlikely but possible).
    			// This is ok; lazy type set computation will determine the actual type set
    			// in normal form.
    			return &Union{terms}
    		}
    
    	case *Interface:
    		methods, mcopied := subst.funcList(t.methods)
    		embeddeds, ecopied := subst.typeList(t.embeddeds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/go/types/subst.go

    		}
    
    	case *Union:
    		terms, copied := subst.termlist(t.terms)
    		if copied {
    			// term list substitution may introduce duplicate terms (unlikely but possible).
    			// This is ok; lazy type set computation will determine the actual type set
    			// in normal form.
    			return &Union{terms}
    		}
    
    	case *Interface:
    		methods, mcopied := subst.funcList(t.methods)
    		embeddeds, ecopied := subst.typeList(t.embeddeds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/net/sendfile_windows.go

    package net
    
    import (
    	"internal/poll"
    	"io"
    	"os"
    	"syscall"
    )
    
    const supportsSendfile = true
    
    // sendFile copies the contents of r to c using the TransmitFile
    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number of bytes copied and any
    // non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/NOTES.txt

    Install for a remote cluster using an external control plane.
    
    The templates in this directory are copies of base and istio-discovery templates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 267 bytes
    - Viewed (0)
  7. src/compress/flate/dict_decoder.go

    //     is used.
    //
    //   - Backward copies: Runs of one or more symbols are copied from previously
    //     emitted data. Backward copies come as the tuple (dist, length) where dist
    //     determines how far back in the stream to copy from and length determines how
    //     many bytes to copy. Note that it is valid for the length to be greater than
    //     the distance. Since LZ77 uses forward copies, that situation is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. releasenotes/notes/manifest-base-cleanup.yaml

          In the new chart it is `{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}` for namespace scoped resources, and `{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}` for cluster scoped resources....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. cni/pkg/install/binaries.go

    package install
    
    import (
    	"os"
    	"path/filepath"
    
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Copies/mirrors any files present in a single source dir to N number of target dirs
    // and returns a set of the filenames copied.
    func copyBinaries(srcDir string, targetDirs []string) (sets.String, error) {
    	copiedFilenames := sets.String{}
    	srcFiles, err := os.ReadDir(srcDir)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/net/sendfile_linux.go

    package net
    
    import (
    	"internal/poll"
    	"io"
    	"os"
    )
    
    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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top