Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for atomics (0.48 sec)

  1. go.mod

    	go.opentelemetry.io/otel/metric v1.27.0
    	go.opentelemetry.io/otel/sdk v1.27.0
    	go.opentelemetry.io/otel/sdk/metric v1.27.0
    	go.opentelemetry.io/otel/trace v1.27.0
    	go.opentelemetry.io/proto/otlp v1.2.0
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    	golang.org/x/net v0.26.0
    	golang.org/x/oauth2 v0.21.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.21.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	// RWConfigStore is the configstore which allows updates, particularly for status.
    	RWConfigStore model.ConfigStoreController
    }
    
    type readinessFlags struct {
    	sidecarInjectorReady  atomic.Bool
    	configValidationReady atomic.Bool
    }
    
    type webhookInfo struct {
    	mu sync.RWMutex
    	wh *inject.Webhook
    }
    
    func (w *webhookInfo) GetTemplates() map[string]string {
    	w.mu.RLock()
    	defer w.mu.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. go.mod

    	github.com/tinylib/msgp v1.1.9
    	github.com/valyala/bytebufferpool v1.0.0
    	github.com/xdg/scram v1.0.5
    	github.com/zeebo/xxh3 v1.0.2
    	go.etcd.io/etcd/api/v3 v3.5.14
    	go.etcd.io/etcd/client/v3 v3.5.14
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	goftp.io/server/v2 v2.0.1
    	golang.org/x/crypto v0.24.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    	golang.org/x/oauth2 v0.21.0
    	golang.org/x/sync v0.7.0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    		initialized = 1
    	}
    	atomic.StoreInt32(&proxier.initialized, initialized)
    }
    
    func (proxier *Proxier) isInitialized() bool {
    	return atomic.LoadInt32(&proxier.initialized) > 0
    }
    
    // OnServiceAdd is called whenever creation of new service object
    // is observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package framework
    
    import (
    	"errors"
    	"fmt"
    	"sort"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

    import org.gradle.tooling.events.OperationCompletionListener
    import org.gradle.tooling.events.task.TaskFinishEvent
    import spock.lang.Issue
    
    import javax.inject.Inject
    import java.util.concurrent.atomic.AtomicInteger
    
    class ConfigurationCacheBuildServiceIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "BuildOperationListener build service is instantiated only once per build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    }
    
    // countCloseListener is a Listener wrapper that counts the number of Close calls.
    type countCloseListener struct {
    	net.Listener
    	closes int32 // atomic
    }
    
    func (p *countCloseListener) Close() error {
    	var err error
    	if n := atomic.AddInt32(&p.closes, 1); n == 1 && p.Listener != nil {
    		err = p.Listener.Close()
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    				},
    				Value: float64(atomic.LoadUint64(&globalIAMSys.TotalRefreshSuccesses)),
    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "sync_failures",
    					Help:      "Number of failed IAM data syncs since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(atomic.LoadUint64(&globalIAMSys.TotalRefreshFailures)),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	})
    }
    
    func (s *xlStorage) NSScanner(ctx context.Context, cache dataUsageCache, updates chan<- dataUsageEntry, scanMode madmin.HealScanMode, weSleep func() bool) (dataUsageCache, error) {
    	atomic.AddInt32(&s.scanning, 1)
    	defer atomic.AddInt32(&s.scanning, -1)
    
    	var err error
    	stopFn := globalScannerMetrics.log(scannerMetricScanBucketDrive, s.drivePath, cache.Info.Name)
    	defer func() {
    		res := make(map[string]string)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    	"log"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"os/exec"
    	"os/exec/internal/fdtest"
    	"os/signal"
    	"path/filepath"
    	"runtime"
    	"runtime/debug"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    // haveUnexpectedFDs is set at init time to report whether any file descriptors
    // were open at program start.
    var haveUnexpectedFDs bool
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top