Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,157 for ONCE (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/internal/socktest/switch_unix.go

    	if !ok {
    		return nil
    	}
    	return &so
    }
    
    // addLocked returns a new Status without locking.
    // sw.smu must be held before call.
    func (sw *Switch) addLocked(s, family, sotype, proto int) *Status {
    	sw.once.Do(sw.init)
    	so := Status{Cookie: cookie(family, sotype, proto)}
    	sw.sotab[s] = so
    	return &so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:10 UTC 2023
    - 718 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/internal/testenv/testenv_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package testenv
    
    import (
    	"os"
    	"path/filepath"
    	"sync"
    	"syscall"
    )
    
    var symlinkOnce sync.Once
    var winSymlinkErr error
    
    func initWinHasSymlink() {
    	tmpdir, err := os.MkdirTemp("", "symtest")
    	if err != nil {
    		panic("failed to create temp directory: " + err.Error())
    	}
    	defer os.RemoveAll(tmpdir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1K bytes
    - Viewed (0)
  8. prow/config/calico.md

    The calico.yaml file is from [https://raw.githubusercontent.com/projectcalico/calico/v3.27.0/manifests/calico.yaml](https://raw.githubusercontent.com/projectcalico/calico/v3.27.0/manifests/calico.yaml)
    
    Once downloaded, run the following sed command to replace the default docker.io images with istio-testing's copies of them:
    
    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
  9. pkg/kubelet/util/swap/swap_util.go

    	"k8s.io/mount-utils"
    )
    
    var (
    	tmpfsNoswapOptionSupported        bool
    	tmpfsNoswapOptionAvailabilityOnce sync.Once
    	swapOn                            bool
    	swapOnErr                         error
    	swapOnOnce                        sync.Once
    )
    
    const TmpfsNoswapOption = "noswap"
    
    func IsTmpfsNoswapOptionSupported(mounter mount.Interface, mountPath string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    }
    -- mutator_test.go --
    package fuzz_test
    
    import (
    	"testing"
    )
    
    // TODO(katiehockman): re-work this test once we have a better fuzzing engine
    // (ie. more mutations, and compiler instrumentation)
    func FuzzMutator(f *testing.F) {
    	// TODO(katiehockman): simplify this once we can dedupe crashes (e.g.
    	// replace map with calls to panic, and simply count the number of crashes
    	// that were added to testdata)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top