Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 636 for swapped (0.21 sec)

  1. guava/src/com/google/common/collect/Tables.java

       * changes the contents of the transposed table and vice versa.
       *
       * <p>The returned table supports update operations as long as the input table supports the
       * analogous operation with swapped rows and columns. For example, in a {@link HashBasedTable}
       * instance, {@code rowKeySet().iterator()} supports {@code remove()} but {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	} else {
    		flags |= uintptr(SIGCHLD)
    		if runtime.GOARCH == "s390x" {
    			// On Linux/s390, the first two arguments of clone(2) are swapped.
    			pid, err1 = rawVforkSyscall(SYS_CLONE, 0, flags, uintptr(unsafe.Pointer(&pidfd)))
    		} else {
    			pid, err1 = rawVforkSyscall(SYS_CLONE, flags, 0, uintptr(unsafe.Pointer(&pidfd)))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    					proc.done = true
    					availableProcs[i], availableProcs[len(availableProcs)-1] = availableProcs[len(availableProcs)-1], availableProcs[i]
    					availableProcs = availableProcs[:len(availableProcs)-1]
    					// We swapped the element at i with another proc, so look at
    					// the index again
    					i--
    					continue pidLoop
    				} else if err != nil {
    					return Events{}, err
    				} else {
    					proc.events = evs
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

       * changes the contents of the transposed table and vice versa.
       *
       * <p>The returned table supports update operations as long as the input table supports the
       * analogous operation with swapped rows and columns. For example, in a {@link HashBasedTable}
       * instance, {@code rowKeySet().iterator()} supports {@code remove()} but {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    			// unification will take care of matching against a
    			// defined or literal type automatically.
    			// If y is also an unbound type parameter, we will end
    			// up here again with x and y swapped, so we don't
    			// need to take care of that case separately.
    			if cx := coreType(x); cx != nil {
    				if traceInference {
    					u.tracef("core %s ≡ %s", xorig, yorig)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/builtins.go

    			types = append(types, typ)
    			if size >= 0 {
    				sizes = append(sizes, size)
    			}
    		}
    		if len(sizes) == 2 && sizes[0] > sizes[1] {
    			check.error(argList[1], SwappedMakeArgs, invalidArg+"length and capacity swapped")
    			// safe to continue
    		}
    		x.mode = value
    		x.typ = T
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ, types...))
    		}
    
    	case _Max, _Min:
    		// max(x, ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. src/go/types/unify.go

    			// unification will take care of matching against a
    			// defined or literal type automatically.
    			// If y is also an unbound type parameter, we will end
    			// up here again with x and y swapped, so we don't
    			// need to take care of that case separately.
    			if cx := coreType(x); cx != nil {
    				if traceInference {
    					u.tracef("core %s ≡ %s", xorig, yorig)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    			recorder.Event(nodeRef, v1.EventTypeWarning, events.PossibleMemoryBackedVolumesOnDisk,
    				"The tmpfs noswap option is not supported. Memory-backed volumes (e.g. secrets, emptyDirs, etc.) "+
    					"might be swapped to disk and should no longer be considered secure.",
    			)
    		}
    	}
    
    	var internalCapacity = v1.ResourceList{}
    	// It is safe to invoke `MachineInfo` on cAdvisor before logically initializing cAdvisor here because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. src/go/types/builtins.go

    			types = append(types, typ)
    			if size >= 0 {
    				sizes = append(sizes, size)
    			}
    		}
    		if len(sizes) == 2 && sizes[0] > sizes[1] {
    			check.error(argList[1], SwappedMakeArgs, invalidArg+"length and capacity swapped")
    			// safe to continue
    		}
    		x.mode = value
    		x.typ = T
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ, types...))
    		}
    
    	case _Max, _Min:
    		// max(x, ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/builtins0.go

    	_ = make([]int, - /* ERROR "must not be negative" */ 1, - /* ERROR "must not be negative" */ 1)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 1 /* ERROR "overflows" */ <<100)
    	_ = make([]int, 10 /* ERROR "length and capacity swapped" */ , 9)
    	_ = make([]int, 1 /* ERROR "overflows" */ <<100, 12345)
    	_ = make([]int, m /* ERROR "must be integer" */ )
            _ = &make /* ERROR "cannot take address" */ ([]int, 0)
    
    	// maps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top