Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for syncAt (0.12 sec)

  1. src/os/os_test.go

    	{"Seek", func(f *File) error { _, err := f.Seek(0, io.SeekStart); return err }},
    	{"Stat", func(f *File) error { _, err := f.Stat(); return err }},
    	{"Sync", func(f *File) error { return f.Sync() }},
    	{"Truncate", func(f *File) error { return f.Truncate(0) }},
    	{"Write", func(f *File) error { _, err := f.Write(make([]byte, 0)); return err }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	goruntime "runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/exec"
    	testingexec "k8s.io/utils/exec/testing"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package apiserver
    
    import (
    	"fmt"
    	"net/http"
    	"sort"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    
    	apiextensionshelpers "k8s.io/apiextensions-apiserver/pkg/apihelpers"
    	apiextensionsinternal "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		pvcInformer,
    		informerFactory.Core().V1().PersistentVolumes(),
    		classInformer,
    		capacityCheck,
    		10*time.Second)
    
    	// Wait for informers cache sync
    	informerFactory.Start(ctx.Done())
    	for v, synced := range informerFactory.WaitForCacheSync(ctx.Done()) {
    		if !synced {
    			logger.Error(nil, "Error syncing informer", "informer", v)
    			os.Exit(1)
    		}
    	}
    
    	// Add storageclasses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    	"path"
    	"runtime"
    	"sort"
    	"strings"
    	"sync"
    )
    
    // dwctxt is a wrapper intended to satisfy the method set of
    // dwarf.Context, so that functions like dwarf.PutAttrs will work with
    // DIEs that use loader.Sym as opposed to *sym.Symbol. It is also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/sha512"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"net"
    	"slices"
    	"strings"
    	"sync"
    	"time"
    	_ "unsafe" // for linkname
    )
    
    const (
    	VersionTLS10 = 0x0301
    	VersionTLS11 = 0x0302
    	VersionTLS12 = 0x0303
    	VersionTLS13 = 0x0304
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    limitations under the License.
    */
    
    package queueset
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"os"
    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/clock"
    
    	"k8s.io/apiserver/pkg/authentication/user"
    	genericrequest "k8s.io/apiserver/pkg/endpoints/request"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        @Override
        public WorkResult copy(Action<? super CopySpec> action) {
            return getFileOperations().copy(action);
        }
    
        @Override
        public WorkResult sync(Action<? super SyncSpec> action) {
            return getFileOperations().sync(action);
        }
    
        @Override
        public CopySpec copySpec(Closure closure) {
            return ConfigureUtil.configure(closure, copySpec());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}{
    		{
    			name:             "Non-consistent list before sync",
    			requestRV:        "0",
    			expectResponseRV: firstNonConsistentReadRV,
    		},
    		{
    			name:             "Consistent request returns currentRV",
    			requestRV:        "",
    			expectResponseRV: currentRV,
    		},
    		{
    			name:             "Non-consistent request after sync returns currentRV",
    			requestRV:        "0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	// Controllers that need to be synced
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Latest unstabilized recommendations for each autoscaler.
    	recommendations     map[string][]timestampedRecommendation
    	recommendationsLock sync.Mutex
    
    	// Latest autoscaler events
    	scaleUpEvents       map[string][]timestampedScaleEvent
    	scaleUpEventsLock   sync.RWMutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top