Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 629 for copiedS (0.14 sec)

  1. src/runtime/memmove_amd64.s

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. pkg/ledger/smt.go

    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. src/runtime/slice.go

    //
    // Requires that uint(newLen) > uint(oldCap).
    // Assumes the original slice length is newLen - num
    //
    // A new backing store is allocated with space for at least newLen elements.
    // Existing entries [0, oldLen) are copied over to the new backing store.
    // Added entries [oldLen, newLen) are not initialized by growslice
    // (although for pointer-containing element types, they are zeroed). They
    // must be initialized by the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/syscall/types_linux.go

    	struct sockaddr_un s4;
    	struct sockaddr_ll s5;
    	struct sockaddr_nl s6;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    // copied from /usr/include/linux/un.h
    struct my_sockaddr_un {
    	sa_family_t sun_family;
    #if defined(__ARM_EABI__) || defined(__powerpc64__) || defined(__riscv__) || defined(__s390x__)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    		copied := foundSvc.svc.DeepCopy()
    		for _, p := range s.Ports {
    			found := false
    			for _, osp := range copied.Ports {
    				if p.Port == osp.Port {
    					found = true
    					break
    				}
    			}
    			if !found {
    				copied.Ports = append(copied.Ports, p)
    			}
    		}
    		// replace service in slice
    		sc.services[foundSvc.index] = copied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. tools/docker-builder/types.go

    	Name string `json:"name"`
    	// Dockerfile path to build from
    	Dockerfile string `json:"dockerfile"`
    	// Files list files that are copied as-is into the image
    	Files []string `json:"files"`
    	// Targets list make targets that are ran and then copied into the image
    	Targets []string `json:"targets"`
    	// Base indicates if this is a base image or not
    	Base bool `json:"base"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/os/types_windows.go

    		// to fetch vol, idxhi and idxlo. But these are already set,
    		// so set fileStat.path to "" to prevent os.SameFile doing it again.
    	}, nil
    }
    
    // newFileStatFromWin32FileAttributeData copies all required information
    // from syscall.Win32FileAttributeData d into the newly created fileStat.
    func newFileStatFromWin32FileAttributeData(d *syscall.Win32FileAttributeData) *fileStat {
    	return &fileStat{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    	// deepCopied defines whether the object below has already been
    	// deep copied. The operation is performed lazily on the first
    	// setXxx operation.
    	//
    	// The lazy deep-copy make is useful, as effectively the only
    	// case when we are setting some fields are ResourceVersion for
    	// DELETE events, so in all other cases we can effectively avoid
    	// performing any deep copies.
    	deepCopied bool
    
    	// Object for which serializations are cached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *   <li>Static methods named {@code of}, accepting an explicit list of elements or entries.
     *   <li>Static methods named {@code copyOf} (or {@code copyOfSorted}), accepting an existing
     *       collection whose contents should be copied.
     *   <li>A static nested {@code Builder} class which can be used to populate a new immutable
     *       instance.
     * </ul>
     *
     * <h4>Warnings</h4>
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    		// There are many internal packages that are listed in
    		// bootstrapDirs and made into bootstrap copies based on the
    		// current repo's source code. Those are fine; this is catching
    		// references to internal packages in the older bootstrap toolchain.
    		if strings.HasPrefix(path, "internal/") {
    			fatalf("%s:%d: bootstrap-copied source file cannot import %s", srcFile, i+1, path)
    		}
    		if path != m[2] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top