Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,639 for ensure (1.13 sec)

  1. src/runtime/chan_test.go

    			}
    			// Ensure that non-blocking receive does not block.
    			select {
    			case _ = <-c:
    				t.Fatalf("chan[%d]: receive from empty chan", chanCap)
    			default:
    			}
    			select {
    			case _, _ = <-c:
    				t.Fatalf("chan[%d]: receive from empty chan", chanCap)
    			default:
    			}
    			c <- 0
    			c <- 0
    		}
    
    		{
    			// Ensure that send to full chan blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            when:
            buildSucceeds()
    
            then:
            //there should be one idle daemon
            def daemon = daemons.daemon
    
            when:
            // Ensure that the daemon has finished updating the registry. Killing it halfway through the registry update will leave the registry corrupted,
            // and the client will just throw the registry away and replace it with an empty one
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/CHANGELOG.md

     - Support extra `--prune-whitelist` resources in kube-addon-manager.
     - Update kubectl to v1.10.7.
    
    ### Version 8.6  (Tue February 20 2018 Zihong Zheng <******@****.***>)
     - Allow reconcile/ensure loop to work with resource under non-kube-system namespace.
     - Update kubectl to v1.9.3.
    
    ### Version 8.4  (Thu November 30 2017 zou nengren @zouyee)
     - Update kubectl to v1.8.4.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/master-helper.sh

    # futile. Instead, we list the required calls to ensure any additional
    #
    # variables are set:
    #   ensure-temp-dir
    #   detect-project
    #   get-bearer-token
    function create-master-instance {
      local address=""
      [[ -n ${1:-} ]] && address="${1}"
      local internal_address=""
      [[ -n ${2:-} ]] && internal_address="${2}"
    
      write-master-env
      ensure-gci-metadata-files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. src/go/types/lookup_test.go

    	lookup := func() {
    		for _, name := range names {
    			typ := scope.Lookup(name).Type()
    			LookupFieldOrMethod(typ, true, pkg, "m")
    		}
    	}
    
    	// Perform a lookup once, to ensure that any lazily-evaluated state is
    	// complete.
    	lookup()
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		lookup()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:43 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/Subscriber.java

     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    class Subscriber {
    
      /** Creates a {@code Subscriber} for {@code method} on {@code listener}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/eventbus/Subscriber.java

     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    class Subscriber {
    
      /** Creates a {@code Subscriber} for {@code method} on {@code listener}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	pods := []*corev1.Pod{pod}
    	addPods(t, controller, fx, pods...)
    
    	createServiceWait(controller, svcName, ns, nil, nil,
    		[]int32{8080}, map[string]string{"app": appName}, t)
    
    	// Ensure that the service is available.
    	hostname := kube.ServiceHostname(svcName, ns, controller.opts.DomainSuffix)
    	svc := controller.GetService(hostname)
    	if svc == nil {
    		t.Fatal("failed to get service")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectArtifactResolver.java

            // NOTE: This isn't thread-safe because we're not locking around allResolvedArtifacts to ensure we're not inserting multiple resolvableArtifacts for
            // the same artifact id.
            //
            // This should be replaced by a computeIfAbsent(...) to be thread-safe and ensure there's only ever one DefaultResolvableArtifact created for a single id.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	// a parent is a console process without console is not clearly documented
    	// but empirically we observed the new console is created and attached to the
    	// subprocess in the default setup.
    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top