Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,637 for cheese (0.07 sec)

  1. pkg/registry/core/service/portallocator/operation.go

    func (op *PortAllocationOperation) AllocateNext() (int, error) {
    	if op.dryRun {
    		// Find the max element of the allocated ports array.
    		// If no ports are already being allocated by this operation,
    		// then choose a sensible guess for a dummy port number
    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    		if len(op.allocated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/interface.go

    // and Pods rejected by these plugins are requeued based on this extension point.
    // Failures from other extension points are regarded as temporal errors (e.g., network failure),
    // and the scheduler requeue Pods without this extension point - always requeue Pods to activeQ after backoff.
    // This is because such temporal errors cannot be resolved by specific cluster events,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    === Tooling support
    
    Testing Gradle plugins, both manually and automatically, is simplified with the appropriate tools.
    The table below provides a summary of each testing approach.
    You can choose any test framework you're comfortable with.
    
    For detailed explanations and code examples, refer to the specific sections below:
    
    [cols="20%,80%",options="header"]
    |======================
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all dependencies for configuration ':a:compile'.")
            failure.assertHasCause("Could not resolve project :b.")
            failure.assertHasCause("""Cannot choose between the available variants of project :b:
      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability test:b:unspecified:
          - Unmatched attribute:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. docs/ko/docs/help-fastapi.md

      "Releases only" 대신 "Watching"을 선택하면 다른 사용자가 새로운 issue를 생성할 때 알림이 수신됩니다.
    
      그런 다음 이런 issues를 해결 할 수 있도록 도움을 줄 수 있습니다.
    
      ## 이슈 생성하기
    
      GitHub 저장소에 [새로운 이슈 생성](https://github.com/tiangolo/fastapi/issues/new/choose) 을 할 수 있습니다, 예를들면 다음과 같습니다:
    
      - **질문**을 하거나 **문제**에 대해 질문합니다.
      - 새로운 **기능**을 제안 합니다.
    
      **참고**: 만약 이슈를 생성한다면, 저는 여러분에게 다른 사람들을 도와달라고 부탁할 것입니다. 😉
    
      ## Pull Request를 만드십시오
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 22:36:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libexport/load.h

      // GraphDef nodes are stored as a repeating list of nodes.  At module load
      // time, a module may have constants that need to be restored.  To restore
      // these constants, they are looked up in the GraphDef's nodes by their name.
      // Since we may need to load many constants, we create a hash map of these
      // names to their corresponding nodes at load time in order to look them up
      // in constant time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

            }
            throw new IllegalStateException("End of document found before returning to 0 depth");
        }
    
        /**
         * Input location builder interface, to be implemented to choose how to store data.
         *
         * @since 3.2.0
         */
        public interface InputLocationBuilder {
            Object toInputLocation(XmlPullParser parser);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            installation("build/install/main/release").exec().out == "Hello from the release library"
        }
    
        @ToBeFixedForConfigurationCache
        def "can choose alternative library implementation of api"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    This practice is common enough that it has a name, these environment variables are commonly placed in a file `.env`, and the file is called a "dotenv".
    
    !!! tip
        A file starting with a dot (`.`) is a hidden file in Unix-like systems, like Linux and macOS.
    
        But a dotenv file doesn't really have to have that exact filename.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMaker.java

       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top