Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,327 for presync (0.16 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	// Determine the upload logger.
    	//
    	// This depends on the provided rcfg.LogWriter and the presence of
    	// dir.DebugDir, as follows:
    	//  1. If LogWriter is present, log to it.
    	//  2. If DebugDir is present, log to a file within it.
    	//  3. If both LogWriter and DebugDir are present, log to a multi writer.
    	//  4. If neither LogWriter nor DebugDir are present, log to a noop logger.
    	var logWriters []io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    mkdir $GOCACHE
    
    # First build: there is no CGO in use, so no token should be present regardless
    # of weird CGO flags.
    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-flto
    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=
    
    # Second build uses CGO, so we expect to see the token present in the
    # -n output only when strange flags are used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/dependencies/implementation.go

    	ip6tablesRestoreBin = "ip6tables-restore"
    )
    
    // It is not sufficient to check for the presence of one binary or the other in $PATH -
    // we must choose a binary that is
    // 1. Available in our $PATH
    // 2. Matches where rules are actually defined in the netns we're operating in
    // (legacy or nft, with a preference for the latter if both present)
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_controller.go

    	// InformersStarted knows if informers were started.
    	InformersStarted <-chan struct{}
    	// InformerFactory interfaces with informers.
    	InformerFactory informerfactory.InformerFactory
    	// Controls full resync of objects monitored for replenishment.
    	ReplenishmentResyncPeriod controller.ResyncPeriodFunc
    	// Filters update events so we only enqueue the ones where we know quota will change
    	UpdateFilter UpdateFilter
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    			b := NewBackend(fb, defaultConfig, auditv1.SchemeGroupVersion)
    			b.ProcessEvents(tc.event)
    
    			require.Equal(t, !tc.wantDropped, event != nil, "Incorrect event presence")
    			if tc.wantTruncated {
    				require.Equal(t, annotationValue, event.Annotations[annotationKey], "Annotation should be present")
    				require.Nil(t, event.RequestObject, "After truncation request should be nil")
    				require.Nil(t, event.ResponseObject, "After truncation response should be nil")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

     * are not applicable in this manner and will throw exceptions if used when multiple
     * {@link org.gradle.jvm.component.internal.JvmSoftwareComponentInternal JvmSoftwareComponentInternal}
     * components are present.
     *
     * At present there should only ever be one such component - the {@code java} component added by the {@link org.gradle.api.plugins.JavaPlugin JavaPlugin} - but
     * multiple components may be created by JVM language plugins in the future.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. cmd/site-replication-utils.go

    const (
    	siteResyncPrefix = bucketMetaPrefix + "/site-replication/resync"
    )
    
    type resyncState struct {
    	resyncID  string
    	LastSaved time.Time
    }
    
    //msgp:ignore siteResyncMetrics
    type siteResyncMetrics struct {
    	sync.RWMutex
    	// resyncStatus maps resync ID to resync status for peer
    	resyncStatus map[string]SiteResyncStatus
    	// map peer deployment ID to resync ID
    	peerResyncMap map[string]resyncState
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			//
    			// branch to 123 if the F3 prefix is present, 234 if the F2 prefix
    			// is present, 66 if the 345 prefix is present, and 456 otherwise.
    			// The prefixes are given in descending order so that the 0 will be last.
    			//
    			// It is unclear what should happen if multiple conditions are
    			// satisfied: what if F2 and F3 are both present, or if 66 and F2
    			// are present, or if all three are present? The one chosen becomes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/timeout.go

    import (
    	"time"
    )
    
    // Timeout manages the resync loop timing for a given node sync operation. The
    // timeout changes depending on whether or not there was an error reported for
    // the operation. Consecutive errors will result in exponential backoff to a
    // maxBackoff timeout.
    type Timeout struct {
    	// Resync is the default timeout duration when there are no errors.
    	Resync time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 20:48:08 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	default:
    		return brs, fmt.Errorf("unexpected resync meta version: %d", brs.Version)
    	}
    	return brs, nil
    }
    
    // save resync status to resync.bin
    func saveResyncStatus(ctx context.Context, bucket string, brs BucketReplicationResyncStatus, objectAPI ObjectLayer) error {
    	data := make([]byte, 4, brs.Msgsize()+4)
    
    	// Initialize the resync meta header.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top