Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Synchronizer (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	//   watchers on our watcher having a processing hiccup
    	chanSize := c.watchCache.suggestedWatchChannelSize(c.indexedTrigger != nil, triggerSupported)
    
    	// Determine the ResourceVersion to which the watch cache must be synchronized
    	requiredResourceVersion, err := c.getWatchCacheResourceVersion(ctx, requestedWatchRV, opts)
    	if err != nil {
    		return newErrWatcher(err), nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/syscall/zerrors_solaris_amd64.go

    	32:  "broken pipe",
    	33:  "argument out of domain",
    	34:  "result too large",
    	35:  "no message of desired type",
    	36:  "identifier removed",
    	37:  "channel number out of range",
    	38:  "level 2 not synchronized",
    	39:  "level 3 halted",
    	40:  "level 3 reset",
    	41:  "link number out of range",
    	42:  "protocol driver not attached",
    	43:  "no CSI structure available",
    	44:  "level 2 halted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	// See Issue #15899.
    	const bufsize = 32 << 10
    
    	go func() {
    		buf := make([]byte, bufsize)
    		for i := 0; i < N; i++ {
    			sconn, err := ln.Accept()
    			if err != nil {
    				// panic rather than synchronize to avoid benchmark overhead
    				// (cannot call b.Fatal in goroutine)
    				panic(fmt.Errorf("accept: %v", err))
    			}
    			serverConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            return ensureTreeConnected();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        public synchronized void close () {
            SmbTreeHandleImpl th = this.treeHandle;
            if ( th != null ) {
                this.treeHandle = null;
                if ( this.transportContext.getConfig().isStrictResourceLifecycle() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return a newly created copy spec
         */
        CopySpec copySpec();
    
        /**
         * Synchronizes the contents of a destination directory with some source directories and files.
         * The given action is used to configure a {@link SyncSpec}, which is then used to synchronize the files.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                this.supplier = supplier;
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
                if (delegate == null) {
                    synchronized (this) {
                        if (delegate == null) {
                            delegate = supplier.get();
                        }
                    }
                }
                return delegate.entrySet();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // Fail marks the function as having failed but continues execution.
    func (c *common) Fail() {
    	if c.parent != nil {
    		c.parent.Fail()
    	}
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	// c.done needs to be locked to synchronize checks to c.done in parent tests.
    	if c.done {
    		panic("Fail in goroutine after " + c.name + " has completed")
    	}
    	c.failed = true
    }
    
    // Failed reports whether the function has failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // Constants for type ACCESS_MASK
    const (
    	DELETE                   = 0x00010000
    	READ_CONTROL             = 0x00020000
    	WRITE_DAC                = 0x00040000
    	WRITE_OWNER              = 0x00080000
    	SYNCHRONIZE              = 0x00100000
    	STANDARD_RIGHTS_REQUIRED = 0x000F0000
    	STANDARD_RIGHTS_READ     = READ_CONTROL
    	STANDARD_RIGHTS_WRITE    = READ_CONTROL
    	STANDARD_RIGHTS_EXECUTE  = READ_CONTROL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    		}
    		if err != nil && !knftables.IsNotFound(err) {
    			logger.Error(err, "Error cleaning up nftables rules")
    			encounteredError = true
    		}
    	}
    
    	return encounteredError
    }
    
    // Sync is called to synchronize the proxier state to nftables as soon as possible.
    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.QueuedUpdate(proxier.ipFamily)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    func (proxier *Proxier) probability(n int) string {
    	if n >= len(proxier.precomputedProbabilities) {
    		proxier.precomputeProbabilities(n)
    	}
    	return proxier.precomputedProbabilities[n]
    }
    
    // Sync is called to synchronize the proxier state to iptables as soon as possible.
    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.QueuedUpdate(proxier.ipFamily)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top