Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for inState (0.16 sec)

  1. src/runtime/debugcall.go

    			"debugCall1024",
    			"debugCall2048",
    			"debugCall4096",
    			"debugCall8192",
    			"debugCall16384",
    			"debugCall32768",
    			"debugCall65536":
    			// These functions are allowed so that the debugger can initiate multiple function calls.
    			// See: https://golang.org/cl/161137/
    			return
    		}
    
    		// Disallow calls from the runtime. We could
    		// potentially make this condition tighter (e.g., not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    	// Initiate Multipart Upload on the above created bucket.
    	res, err := obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

       * closing, closed, or canceled.
       *
       * This method returns immediately.
       */
      fun send(bytes: ByteString): Boolean
    
      /**
       * Attempts to initiate a graceful shutdown of this web socket. Any already-enqueued messages will
       * be transmitted before the close message is sent but subsequent calls to [send] will return
       * false and their messages will not be enqueued.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- /readyz starts returning red
        - run pre shutdown hooks
    
    T0+70s: AfterShutdownDelayDuration: shutdown delay duration has passed
    	- the default value of 'ShutdownDelayDuration' is '70s'
    	- it's time to initiate shutdown of the HTTP Server, server.Shutdown is invoked
    	- as a consequene, the Close function has is called for all listeners
     	- the HTTP Server stops listening immediately
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. maven-compat/src/main/resources/META-INF/maven/plugin.xml

      <isolatedRealm>false</isolatedRealm>
      <inheritedByDefault>true</inheritedByDefault>
      <mojos>
        <mojo>
          <goal>start-fork</goal>
          <description>Setup the appropriate build state to initiate a forked execution.</description>
          <requiresDirectInvocation>false</requiresDirectInvocation>
          <requiresProject>false</requiresProject>
          <requiresReports>false</requiresReports>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/authorizer/reload.go

    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    )
    
    type reloadableAuthorizerResolver struct {
    	// initialConfig holds the ReloadFile used to initiate background reloading,
    	// and information used to construct webhooks that isn't exposed in the authorization
    	// configuration file (dial function, backoff settings, etc)
    	initialConfig Config
    
    	apiServerID string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                return null;
            }
            return super.findByNameWithoutRules(name);
        }
    
        private void realizeTask(ModelPath taskPath, ModelNode.State minState) {
            project.getModelRegistry().atStateOrLater(taskPath, ModelType.of(Task.class), minState);
        }
    
        @Override
        public <U extends Task> NamedDomainObjectContainer<U> containerWithType(Class<U> type) {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        if (readingCompressedMessage) {
          val messageInflater =
            this.messageInflater
              ?: MessageInflater(noContextTakeover).also { this.messageInflater = it }
          messageInflater.inflate(messageFrameBuffer)
        }
    
        if (opcode == OPCODE_TEXT) {
          frameCallback.onReadMessage(messageFrameBuffer.readUtf8())
        } else {
          frameCallback.onReadMessage(messageFrameBuffer.readByteString())
    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. pkg/serviceaccount/openidmetadata.go

    	Issuer string `json:"issuer"` // REQUIRED in OIDC; meaningful to relying parties.
    	// TODO(mtaufen): Since our goal is compatibility for relying parties that
    	// need to validate ID tokens, but do not need to initiate login flows,
    	// and since we aren't sure what to put in authorization_endpoint yet,
    	// we will omit this field until someone files a bug.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  10. docs/bucket/replication/README.md

    namespace.
    
    In the rare event that target DR site is entirely lost and previously replicated objects to the DR cluster need to be re-replicated, `mc replicate resync start alias/bucket --remote-bucket <arn>` can be used to initiate a reset. This would initiate a re-sync between the two clusters by walking the bucket namespace and replicating eligible objects that satisfy the existing objects replication rule specified in the replication config. The status of the resync operation can be viewed...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top