Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 142 for get_target (0.28 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    					p.Link = q
    					q.As = AJMP
    					q.Pos = p.Pos
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(p.To.Target())
    					p.To.SetTarget(q)
    					q = c.newprog()
    					q.Link = p.Link
    					p.Link = q
    					q.As = AJMP
    					q.Pos = p.Pos
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(q.Link.Link)
    					rescan = true
    				}
    			}
    
    			m = int(o.size)
    			if m == 0 {
    				switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    				targetToUpdate.ReplicationSync = (peer.SyncState == madmin.SyncEnabled)
    			}
    			if updateBW {
    				targetToUpdate.BandwidthLimit = int64(peer.DefaultBandwidth.Limit)
    			}
    			err := globalBucketTargetSys.SetTarget(ctx, bucket, &targetToUpdate, true)
    			if err != nil {
    				return c.annotatePeerErr(peer.Name, "Bucket target update error", err)
    			}
    			targets, err := globalBucketTargetSys.ListBucketTargets(ctx, bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. cmd/admin-bucket-handlers.go

    	if target.BandwidthLimit > 0 && target.BandwidthLimit < 100*1000*1000 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrReplicationBandwidthLimitError, err), r.URL)
    		return
    	}
    	if err = globalBucketTargetSys.SetTarget(ctx, bucket, &target, update); err != nil {
    		switch err.(type) {
    		case RemoteTargetConnectionErr:
    			writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrReplicationRemoteConnectionError, err), r.URL)
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    	TYPE_INDIR
    	TYPE_REGLIST
    	TYPE_SPECIAL
    )
    
    func (a *Addr) Target() *Prog {
    	if a.Type == TYPE_BRANCH && a.Val != nil {
    		return a.Val.(*Prog)
    	}
    	return nil
    }
    func (a *Addr) SetTarget(t *Prog) {
    	if a.Type != TYPE_BRANCH {
    		panic("setting branch target when type is not TYPE_BRANCH")
    	}
    	a.Val = t
    }
    
    func (a *Addr) SetConst(v int64) {
    	a.Sym = nil
    	a.Type = TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            def target = registry.node("target")
            registry.root.addReference("ref", String, target)
            def ref = registry.atState("ref", ModelNode.State.Discovered)
    
            when:
            ref.setTarget(newTarget)
    
            then:
            IllegalStateException e = thrown()
            e.message == "Cannot set target for model element 'ref' as this element is not mutable."
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.ant.AntTarget.getDescription()> does not have raw return type assignable to org.gradle.api.provider.Property in (AntTarget.java:0)
    Method <org.gradle.api.tasks.ant.AntTarget.getTarget()> does not have raw return type assignable to org.gradle.api.provider.Property in (AntTarget.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.ant.AntTarget.getTarget()> has arguments/return type org.apache.tools.ant.Target that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AntTarget.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    					q.Link = p.Link
    					p.Link = q
    					q.As = AB
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(p.To.Target())
    					p.To.SetTarget(q)
    					q = c.newprog()
    					q.Link = p.Link
    					p.Link = q
    					q.As = AB
    					q.To.Type = obj.TYPE_BRANCH
    					q.To.SetTarget(q.Link.Link)
    					bflag = 1
    				}
    			}
    			m = o.size(c.ctxt, p)
    
    			if m == 0 {
    				switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/asm5.go

    			if false && skip == 1 {
    				fmt.Printf("note: flush literal pool at %x: len=%d ref=%x\n", uint64(p.Pc+4), c.pool.size, c.pool.start)
    			}
    			q := c.newprog()
    			q.As = AB
    			q.To.Type = obj.TYPE_BRANCH
    			q.To.SetTarget(p.Link)
    			q.Link = c.blitrl
    			q.Pos = p.Pos
    			c.blitrl = q
    		} else if force == 0 && (p.Pc+int64(c.pool.size)-int64(c.pool.start) < 2048) {
    			return false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    void <clinit>(); } org/junit/runner/manipulation/Ordering$Context.class package org.junit.runner.manipulation; public synchronized class Ordering$Context { private final org.junit.runner.Description description; public org.junit.runner.Description getTarget(); private void Ordering$Context(org.junit.runner.Description); } org/junit/runner/manipulation/Filterable.class package org.junit.runner.manipulation; public abstract interface Filterable { public abstract void filter(Filter) throws NoTestsRemainExcepti;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top