Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,004 for ONCE (0.17 sec)

  1. pkg/kube/kclient/interfaces.go

    	ShutdownHandlers()
    	// Start starts just this informer. Typically, this is not used. Instead, the `kube.Client.Run()` is
    	// used to start all informers at once.
    	// However, in some cases we need to run individual informers directly.
    	// This function should only be called once. It does not wait for the informer to become ready nor does it block,
    	// so it should generally not be called in a goroutine.
    	Start(stop <-chan struct{})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            when:
            registry.listInstallations()
    
            then:
            operations.log.getDescriptors().find { it.displayName == "Toolchain detection" }
        }
    
        def "filters always and warns once about an installation that is not a directory"() {
            given:
            def jdk8 = temporaryFolder.createFile("not-a-directory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_cluster_replication_last_hour_failed_count`         | (_Site Replication Only_) Total number of objects which failed replication in the last full hour.        |
    | `minio_cluster_replication_last_minute_failed_bytes`       | Total number of bytes failed at least once to replicate in the last full minute.                         |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            then:
            !componentSelection.rejected
            // rules are called in order
            closureCalled == 0..7
        }
    
        // Short circuiting tests will need to be removed once the extra param feature is removed
        def "short-circuit prefers non-metadata rules over rules requiring metadata"() {
            def metadataProvider = Mock(MetadataProvider)
            def closuresCalled = []
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/BuildIdentifiedProgressDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization;
    
    /**
     * Fired once a build in the tree is discovered and before any other build operations reference that build are executed.
     *
     * @since 8.0
     */
    public interface BuildIdentifiedProgressDetails {
        String getBuildPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 878 bytes
    - Viewed (0)
  6. internal/event/target/nsq.go

    	"errors"
    	"fmt"
    	"net/url"
    	"os"
    	"path/filepath"
    
    	"github.com/nsqio/go-nsq"
    
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // NSQ constants
    const (
    	NSQAddress       = "nsqd_address"
    	NSQTopic         = "topic"
    	NSQTLS           = "tls"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

              return block()
            }
          },
          delayNanos,
        )
      }
    
      /**
       * Executes [block] once on a task runner thread.
       *
       * TODO: make this inline once this is fixed: https://github.com/oracle/graal/issues/3466
       */
      fun execute(
        name: String,
        delayNanos: Long = 0L,
        cancelable: Boolean = true,
        block: () -> Unit,
      ) {
        schedule(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

         * This is a workaround to preserve backward compatibility with IntelliJ IDEA.
         * The problem only occurs in IntelliJ IDEA because it parses {@link OperationDescriptor#getDisplayName()} to get the test display name.
         * Once its code is updated to use {@link org.gradle.tooling.events.test.TestOperationDescriptor#getTestDisplayName()}, the workaround can be removed as well.
         * Alternatively, it can be removed in Gradle 9.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         */
        void onStdin(@Nullable StdinHandler handler);
    
        /**
         * Registers a handler for when this connection is disconnected unexpectedly.. The handler is notified at most once.
         *
         * The handler is not notified after any of the following occurs:
         * <ul>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    // they depend on the plugin handlers (for each plugin type) to implement this
    // behavior.
    //
    // Once an operation completes successfully, the actualStateOfWorld is updated
    // to indicate the plugin is registered/unregistered.
    //
    // Once the operation is started, since it is executed asynchronously,
    // errors are simply logged and the goroutine is terminated without updating
    // actualStateOfWorld.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top