Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,460 for syncs (0.09 sec)

  1. istioctl/pkg/writer/pilot/status.go

    	listenerStatus        string
    	routeStatus           string
    	endpointStatus        string
    	extensionconfigStatus string
    }
    
    const ignoredStatus = "IGNORED"
    
    // PrintAll takes a slice of Istiod syncz responses and outputs them using a tabwriter
    func (s *XdsStatusWriter) PrintAll(statuses map[string]*discovery.DiscoveryResponse) error {
    	w, fullStatus, err := s.setupStatusPrint(statuses)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func_test.go

    			in:  `foo.Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align64; sync/atomic.v uint64 }]`,
    			pkg: `foo`,
    			sym: "Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align64; sync/atomic.v uint64 }]",
    		},
    		{
    			in:  `example%2ecom.Bar[go.shape.struct { sync/atomic._ sync/atomic.noCopy; sync/atomic._ sync/atomic.align64; sync/atomic.v uint64 }]`,
    			pkg: `example%2ecom`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/issue30628.gox

    v3;
    package issue30628
    pkgpath issue30628
    import os os "os"
    import sync sync "sync"
    init cpu internal..z2fcpu..import poll internal..z2fpoll..import testlog internal..z2ftestlog..import io io..import os os..import runtime runtime..import sys runtime..z2finternal..z2fsys..import sync sync..import syscall syscall..import time time..import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 20:50:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            then:
            executedAndNotSkipped ':sync'
        }
    
        @NotYetImplemented
        def 'sync is not up to date when files are added to the destination dir'() {
            given:
            defaultSourceFileTree()
            file('dest').create {}
    
            buildScript '''
                task sync(type: Sync) {
                    from 'source'
                    into 'dest'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_mips64x.s

    TEXT ·Store(SB), NOSPLIT, $0-12
    	MOVV	ptr+0(FP), R1
    	MOVW	val+8(FP), R2
    	SYNC
    	MOVW	R2, 0(R1)
    	SYNC
    	RET
    
    TEXT ·Store8(SB), NOSPLIT, $0-9
    	MOVV	ptr+0(FP), R1
    	MOVB	val+8(FP), R2
    	SYNC
    	MOVB	R2, 0(R1)
    	SYNC
    	RET
    
    TEXT ·Store64(SB), NOSPLIT, $0-16
    	MOVV	ptr+0(FP), R1
    	MOVV	val+8(FP), R2
    	SYNC
    	MOVV	R2, 0(R1)
    	SYNC
    	RET
    
    // void	Or8(byte volatile*, byte);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/runtime/race_s390x.s

    TEXT	sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    // Store
    
    TEXT	sync∕atomic·StoreInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	MOVD	$__tsan_go_atomic32_store(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/race_ppc64le.s

    	BR	racecallatomic<>(SB)
    
    TEXT	sync∕atomic·SwapUint32(SB), NOSPLIT, $0-20
    	GO_ARGS
    	BR	sync∕atomic·SwapInt32(SB)
    
    TEXT	sync∕atomic·SwapUint64(SB), NOSPLIT, $0-24
    	GO_ARGS
    	BR	sync∕atomic·SwapInt64(SB)
    
    TEXT	sync∕atomic·SwapUintptr(SB), NOSPLIT, $0-24
    	GO_ARGS
    	BR	sync∕atomic·SwapInt64(SB)
    
    // Add atomic in tsan
    TEXT	sync∕atomic·AddInt32(SB), NOSPLIT, $0-20
    	GO_ARGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. test/inline_sync.go

    // imported from the sync package is working.
    // Compiles but does not run.
    
    // FIXME: This test is disabled on architectures where atomic operations
    // are function calls rather than intrinsics, since this prevents inlining
    // of the sync fast paths. This test should be re-enabled once the problem
    // is solved.
    
    package foo
    
    import (
    	"sync"
    )
    
    var mutex *sync.Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. test/chan/nonblock.go

    		}
    		if buffer == 0 {
    			<-sync
    		}
    
    		go i64receiver(c64, sync)
    		try = 0
    	Send64:
    		for {
    			select {
    			case c64 <- 123456:
    				break Send64
    			default:
    				try++
    				if try > maxTries {
    					panic("i64receiver")
    				}
    				sleep()
    			}
    		}
    		<-sync
    
    		go i64sender(c64, sync)
    		if buffer > 0 {
    			<-sync
    		}
    		try = 0
    	Recv64:
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  10. src/runtime/race_arm64.s

    	RET
    
    TEXT	sync∕atomic·LoadUint32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt32(SB)
    
    TEXT	sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    // Store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top