Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for extended (0.32 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * link:{javadocPath}/org/gradle/api/provider/ListProperty.html[ListProperty] no longer extends link:{javadocPath}/org/gradle/api/provider/Property.html[Property].
    
    [[changes_4.4]]
    == Upgrading from 4.3 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// so the run ends inside this word.
    		run = uint(sys.LeadingZeros64(x << z1))
    	} else {
    		// After shifting out z1 bits, we have no more 1s.
    		// This means the run extends to the bottom of the
    		// word so it may extend into further words.
    		run = 64 - z1
    		for j := i - 1; j >= 0; j-- {
    			x := fillAligned(m.scavenged[j]|m.pallocBits[j], uint(minimum))
    			run += uint(sys.LeadingZeros64(x))
    			if x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    		a := AOR
    		if p.As == AMOVW && c.ctxt.Arch.Family == sys.MIPS64 {
    			// on MIPS64, most of the 32-bit instructions have unpredictable behavior,
    			// but SLL is special that the result is always sign-extended to 64-bit.
    			a = ASLL
    		}
    		o1 = OP_RRR(c.oprrr(a), p.From.Reg, REGZERO, p.To.Reg)
    
    	case 2: /* add/sub r1,[r2],r3 */
    		r := p.Reg
    		if p.As == ANEGW || p.As == ANEGV {
    			r = REGZERO
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				// Set nodeInfo to extenders to mock extenders' cache for preemption.
    				cachedNodeInfo := framework.NewNodeInfo()
    				cachedNodeInfo.SetNode(node)
    				cachedNodeInfoMap[node.Name] = cachedNodeInfo
    			}
    			var extenders []framework.Extender
    			for _, extender := range test.extenders {
    				// Set nodeInfoMap as extenders cached node information.
    				extender.CachedNodeNameToInfo = cachedNodeInfoMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(routes[0].GetMatch().GetDynamicMetadata()[1].GetInvert()).To(BeTrue())
    	})
    
    	t.Run("for virtual service with exact matching on JWT claims with extended", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64.s

    	FMOVS	0x44332211(R1), F2	// FMOVS	1144201745(R1), F2
    	FMOVD	0x1000000(R1), F2	// FMOVD	16777216(R1), F2
    	FMOVD	0x44332211(R1), F2	// FMOVD	1144201745(R1), F2
    
    // shifted or extended register offset.
    	MOVD	(R2)(R6.SXTW), R4               // 44c866f8
    	MOVD	(R3)(R6), R5                    // 656866f8
    	MOVD	(R3)(R6*1), R5                  // 656866f8
    	MOVD	(R2)(R6), R4                    // 446866f8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    		{&plugins.Permit, &f.permitPlugins},
    		{&plugins.PreEnqueue, &f.preEnqueuePlugins},
    		{&plugins.QueueSort, &f.queueSortPlugins},
    	}
    }
    
    // Extenders returns the registered extenders.
    func (f *frameworkImpl) Extenders() []framework.Extender {
    	return f.extenders
    }
    
    type frameworkOptions struct {
    	componentConfigVersion string
    	clientSet              clientset.Interface
    	kubeConfig             *restclient.Config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top