Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 369 for stops (0.08 sec)

  1. pkg/test/framework/test.go

    	RequireKubernetesMinorVersion(minorVersion uint) Test
    	// RequiresMinClusters ensures that the current environment contains at least the expected number of clusters.
    	// Otherwise it stops test execution and skips the test.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequiresMinClusters(minClusters int) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    But it's not possible to have a running container without **at least one running process**. If the main process stops, the container stops.
    
    ## Build a Docker Image for FastAPI
    
    Okay, let's build something now! 🚀
    
    I'll show you how to build a **Docker image** for FastAPI **from scratch**, based on the **official Python** image.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_monitor.go

    		replenishmentFunc: replenishmentFunc,
    		registry:          registry,
    		updateFilter:      updateFilter,
    	}
    }
    
    // monitor runs a Controller with a local stop channel.
    type monitor struct {
    	controller cache.Controller
    
    	// stopCh stops Controller. If stopCh is nil, the monitor is considered to be
    	// not yet started.
    	stopCh chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            1 * selectedComponentResult.rejectedByRule({it.id == b.id})
            1 * selectedComponentResult.rejectedByRule({it.id == a.id})
            1 * selectedComponentResult.noMatchFound()
            0 * _
        }
    
        def "stops when candidate cannot be resolved"() {
            given:
            def a = component('1.2')
            def b = Mock(ModuleComponentResolveState)
            def c = component('2.0', 'integration')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

            1 * result.failed(_) >> { args -> assert args[0] instanceof ModuleVersionNotFoundException }
    
            and:
            0 * localAccess._
            0 * remoteAccess._
            0 * result._
        }
    
        def "stops on first available local dependency for static version"() {
            given:
            def repo1 = addRepo1()
            def repo2 = Mock(ModuleComponentRepository)
            resolver.add(repo2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/runtime/lockrank_on.go

    		systemstack(func() {
    			print("world stop count=", stopped, "\n")
    			throw("released non-stopped world stop")
    		})
    	}
    }
    
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    func checkWorldStopped() bool {
    	stopped := worldIsStopped.Load()
    	if stopped > 1 {
    		systemstack(func() {
    			print("inconsistent world stop count=", stopped, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    			s.timer.sleep(int64(debug.traceadvanceperiod))
    
    			// Try to advance the trace.
    			traceAdvance(false)
    		}
    		s.done <- struct{}{}
    	}()
    }
    
    // stop stops a traceAdvancer and blocks until it exits.
    func (s *traceAdvancerState) stop() {
    	s.timer.wake()
    	<-s.done
    	close(s.done)
    	s.timer.close()
    }
    
    // traceAdvancePeriod is the approximate period between
    // new generations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Always add a `settings.gradle` to the root directory of your build to avoid the initial performance impact.
    The file can either be empty or define the desired name of the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. internal/event/target/elasticsearch.go

    }
    
    // Close - does nothing and available for interface compatibility.
    func (target *ElasticsearchTarget) Close() error {
    	close(target.quitCh)
    	if target.client != nil {
    		// Stops the background processes that the client is running.
    		target.client.stop()
    	}
    	return nil
    }
    
    func (target *ElasticsearchTarget) checkAndInitClient(ctx context.Context) error {
    	if target.client != nil {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        val e = InterruptedIOException("timeout")
        if (cause != null) e.initCause(cause)
        @Suppress("UNCHECKED_CAST") // E is either IOException or IOException?
        return e as E
      }
    
      /**
       * Stops applying the timeout before the call is entirely complete. This is used for WebSockets
       * and duplex calls where the timeout only applies to the initial setup.
       */
      fun timeoutEarlyExit() {
        check(!timeoutEarlyExit)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top