Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for extended (0.36 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    func SetsockoptPacketMreq(fd, level, opt int, mreq *PacketMreq) error {
    	return setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))
    }
    
    // SetsockoptSockFprog attaches a classic BPF or an extended BPF program to a
    // socket to filter incoming packets.  See 'man 7 socket' for usage information.
    func SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    		ai := arenaIndex(base)
    		ha := h.arenas[ai.l1()][ai.l2()]
    
    		zeroedBase := atomic.Loaduintptr(&ha.zeroedBase)
    		arenaBase := base % heapArenaBytes
    		if arenaBase < zeroedBase {
    			// We extended into the non-zeroed part of the
    			// arena, so this region needs to be zeroed before use.
    			//
    			// zeroedBase is monotonically increasing, so if we see this now then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    android.experimental.legacyTransform.forceNonIncremental=true
    ```
    
    ==== Change to `AntBuilder` parent class
    
    Previously, `org.gradle.api.AntBuilder` extended the deprecated `groovy.util.AntBuilder` class.
    It now extends `groovy.ant.AntBuilder`.
    
    ==== `PluginDeclaration` is not serializable
    
    `org.gradle.plugin.devel.PluginDeclaration` is not serializable anymore.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Intended usage is noted in the `Configuration` interface's Javadoc.
    This list is likely to grow in future releases.
    
    Starting in Gradle 9.0, using a configuration inconsistently with its intended usage will be prohibited.
    
    Also note that although it is not currently restricted, the `getDependencies()` method is really only intended for use with DECLARABLE configurations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					Left: name,
    					Right: &ExprList{
    						Exprs: []AST{operand},
    					},
    				}
    			}
    		}
    		var args []AST
    		for {
    			if len(st.str) == 0 {
    				st.fail("missing argument in vendor extended expressoin")
    			}
    			if st.str[0] == 'E' {
    				st.advance(1)
    				break
    			}
    			arg := st.templateArg(nil)
    			args = append(args, arg)
    		}
    		return &Binary{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    				k := base + i*words + j
    				out[k/8] |= 1 << (k % 8)
    			}
    		}
    	}
    }
    
    // appendGCProg appends the GC program for the first ptrdata bytes of
    // typ to dst and returns the extended slice.
    func appendGCProg(dst []byte, typ *abi.Type) []byte {
    	if typ.Kind_&abi.KindGCProg != 0 {
    		// Element has GC program; emit one element.
    		n := uintptr(*(*uint32)(unsafe.Pointer(typ.GCData)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers.go

    	// containerEphemeralStorageMessageFmt provides additional information for containers which have exceeded their ES limit
    	containerEphemeralStorageMessageFmt = "Container %s exceeded its local ephemeral storage limit %q. "
    	// podEphemeralStorageMessageFmt provides additional information for pods which have exceeded their ES limit
    	podEphemeralStorageMessageFmt = "Pod ephemeral local storage usage exceeds the total limit of containers %s. "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    	36: "thread Cancellation",
    	37: "resource Lost",
    	38: "resource Control Exceeded",
    	39: "reserved for JVM 1",
    	40: "reserved for JVM 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_386.go

    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    	25: "file size limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window changed",
    	29: "I/O possible",
    	30: "power failure",
    	31: "bad system call",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    	{31, "SIGXFSZ", "file Size Limit Exceeded"},
    	{32, "SIGWAITING", "no runnable lwp"},
    	{33, "SIGLWP", "inter-lwp signal"},
    	{34, "SIGFREEZE", "checkpoint Freeze"},
    	{35, "SIGTHAW", "checkpoint Thaw"},
    	{36, "SIGCANCEL", "thread Cancellation"},
    	{37, "SIGLOST", "resource Lost"},
    	{38, "SIGXRES", "resource Control Exceeded"},
    	{39, "SIGJVM1", "reserved for JVM 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
Back to top