Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 317 for isInitialized (3.43 sec)

  1. pkg/kubelet/util/manager/watch_based_manager_test.go

    	store.startRecycleIdleWatch()
    
    	// Reflector didn't yet initialize, so it shouldn't be stopped.
    	// However, Get should still be failing.
    	assert.True(t, reflectorRunning())
    	initialized, _ := reflectorInitialized()
    	assert.False(t, initialized)
    	_, err := store.Get("ns", "name")
    	if err == nil || !strings.Contains(err.Error(), "failed to sync") {
    		t.Errorf("Expected failed to sync error, got: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    	// Regression test for data race reported in issue 46363:
    	// ReadMIMEHeader reads commonHeader before commonHeader has been initialized.
    	// Run this test with the race detector enabled to catch the reported data race.
    
    	// Reset commonHeaderOnce, so that commonHeader will have to be initialized
    	commonHeaderOnce = sync.Once{}
    	commonHeader = nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    	nim = nodeinfomanager.NewNodeInfoManager(host.GetNodeName(), host, migratedPlugins)
    
    	// This function prevents Kubelet from posting Ready status until CSINode
    	// is both installed and initialized
    	if err := initializeCSINode(host); err != nil {
    		return errors.New(log("failed to initialize CSINode: %v", err))
    	}
    
    	return nil
    }
    
    func initializeCSINode(host volume.VolumeHost) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. cmd/peer-rest-client.go

    type peerRESTClient struct {
    	host       *xnet.Host
    	restClient *rest.Client
    	gridHost   string
    	// Function that returns the grid connection for this peer when initialized.
    	// Will return nil if the grid connection is not initialized yet.
    	gridConn func() *grid.Connection
    }
    
    // Returns a peer rest client.
    func newPeerRESTClient(peer *xnet.Host, gridHost string) *peerRESTClient {
    	scheme := "http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    		b.WriteRune(':')
    		b.WriteString(proxyLabels[key])
    		b.WriteRune(' ')
    	}
    	return b.Bytes()
    }
    
    // IsLocalityEmpty checks if a locality is empty (checking region is good enough, based on how its initialized)
    func IsLocalityEmpty(locality *core.Locality) bool {
    	if locality == nil || (len(locality.GetRegion()) == 0) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

            where:
            isolationMode << ISOLATION_MODES
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def "produces a sensible error when worker fails before logging is initialized"() {
            fixture.withWorkActionClassInBuildScript()
    
            buildFile << """
                task runInWorker(type: WorkerTask) {
                    isolationMode = 'processIsolation'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

    before ss1
    created ss1
    configured ss1
    after ss1
    '''
        }
    
        @NotYetImplemented // Needs the ability to specify a rule for top-level nodes by type
        def "a LSS is initialized with a default source set"() {
            buildFile << """
            ${registerJavaLanguage()}
    
            model {
                functionalSources(FunctionalSourceSet){
                    myJavaSourceSet(SomeJavaSourceSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

      private var isControlFrame = false
      private var readingCompressedMessage = false
    
      private val controlFrameBuffer = Buffer()
      private val messageFrameBuffer = Buffer()
    
      /** Lazily initialized on first use. */
      private var messageInflater: MessageInflater? = null
    
      // Masks are only a concern for server writers.
      private val maskKey: ByteArray? = if (isClient) null else ByteArray(4)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

    public class SpnegoAuthenticator implements SsoAuthenticator {
    
        private static final Logger logger = LogManager.getLogger(SpnegoAuthenticator.class);
    
        protected static final String SPNEGO_INITIALIZED = "spnego.initialized";
        protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs";
        protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InternetDomainName.java

       * relevant suffix was found.
       */
      private static final int NO_SUFFIX_FOUND = -1;
    
      /**
       * Value of {@link #publicSuffixIndexCache} or {@link #registrySuffixIndexCache} which indicates
       * that they were not initialized yet.
       */
      private static final int SUFFIX_NOT_INITIALIZED = -2;
    
      /**
       * Maximum parts (labels) in a domain name. This value arises from the 255-octet limit described
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top