Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for kAsync (0.33 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		p1.To.Reg = out
    		// BNE
    		p2 := s.Prog(ppc64.ABNE)
    		p2.To.Type = obj.TYPE_BRANCH
    		// ISYNC
    		pisync := s.Prog(ppc64.AISYNC)
    		pisync.To.Type = obj.TYPE_NONE
    		p2.To.SetTarget(pisync)
    
    	case ssa.OpPPC64LoweredAtomicStore8,
    		ssa.OpPPC64LoweredAtomicStore32,
    		ssa.OpPPC64LoweredAtomicStore64:
    		// SYNC or LWSYNC
    		// MOVB/MOVW/MOVD arg1,(arg0)
    		st := ppc64.AMOVD
    		switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task finalizer1 = task("finalizer1", type: Async, dependsOn: [finalizerDep1])
            Task finalizerDep2 = task("finalizerDep2", type: Async, dependsOn: [finalizer1])
            Task finalizer2 = task("finalizer2", type: Async, dependsOn: [finalizerDep2])
            Task a = task("a", type: Async, finalizedBy: [finalizer1])
            Task b = task("b", type: Async, finalizedBy: [finalizer2], dependsOn: [a])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    			// The skipped pods will be retried later. The next controller resync will
    			// retry the slow start process.
    			break
    		}
    	}
    
    	logger.V(4).Info("Pods to delete for daemon set, deleting", "daemonset", klog.KObj(ds), "toDeleteCount", podsToDelete, "deleteCount", deleteDiff)
    	deleteWait := sync.WaitGroup{}
    	deleteWait.Add(deleteDiff)
    	for i := 0; i < deleteDiff; i++ {
    		go func(ix int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		}
    	}
    	if err == nil {
    		raceAcquire(unsafe.Pointer(&ioSync))
    	}
    }
    
    func Writev(fd int, iovs [][]byte) (n int, err error) {
    	iovecs := make([]Iovec, 0, minIovec)
    	iovecs = appendBytes(iovecs, iovs)
    	if raceenabled {
    		raceReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	n, err = writev(fd, iovecs)
    	writevRacedetect(iovecs, n)
    	return n, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    		staleChains:         make(map[string]time.Time),
    		logger:              logger,
    	}
    
    	burstSyncs := 2
    	logger.V(2).Info("NFTables sync params", "minSyncPeriod", minSyncPeriod, "syncPeriod", syncPeriod, "burstSyncs", burstSyncs)
    	proxier.syncRunner = async.NewBoundedFrequencyRunner("sync-runner", proxier.syncProxyRules, minSyncPeriod, syncPeriod, burstSyncs)
    
    	return proxier, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    				return h, e
    			}
    		}
    	}
    	if createmode == OPEN_EXISTING && access == GENERIC_READ {
    		// Necessary for opening directory handles.
    		attrs |= FILE_FLAG_BACKUP_SEMANTICS
    	}
    	if mode&O_SYNC != 0 {
    		const _FILE_FLAG_WRITE_THROUGH = 0x80000000
    		attrs |= _FILE_FLAG_WRITE_THROUGH
    	}
    	return CreateFile(pathp, access, sharemode, sa, createmode, attrs, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	recommendationsLock sync.Mutex
    
    	// Latest autoscaler events
    	scaleUpEvents       map[string][]timestampedScaleEvent
    	scaleUpEventsLock   sync.RWMutex
    	scaleDownEvents     map[string][]timestampedScaleEvent
    	scaleDownEventsLock sync.RWMutex
    
    	// Storage of HPAs and their selectors.
    	hpaSelectors    *selectors.BiMultimap
    	hpaSelectorsMux sync.Mutex
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. fastapi/param_functions.py

        from typing import Annotated
    
        from fastapi import Depends, FastAPI
    
        app = FastAPI()
    
    
        async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100):
            return {"q": q, "skip": skip, "limit": limit}
    
    
        @app.get("/items/")
        async def read_items(commons: Annotated[dict, Depends(common_parameters)]):
            return commons
        ```
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	}
    
    	burstSyncs := 2
    	logger.V(2).Info("Iptables sync params", "minSyncPeriod", minSyncPeriod, "syncPeriod", syncPeriod, "burstSyncs", burstSyncs)
    	// We pass syncPeriod to ipt.Monitor, which will call us only if it needs to.
    	// We need to pass *some* maxInterval to NewBoundedFrequencyRunner anyway though.
    	// time.Hour is arbitrary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	O_RDWR                        = 0x2
    	O_RSYNC                       = 0x8000
    	O_SEARCH                      = 0x200000
    	O_SIOCGIFCONF                 = -0x3ff796ec
    	O_SIOCGLIFCONF                = -0x3fef9688
    	O_SYNC                        = 0x10
    	O_TRUNC                       = 0x200
    	O_WRONLY                      = 0x1
    	O_XATTR                       = 0x4000
    	PARENB                        = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top