Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 593 for Requirements (0.44 sec)

  1. src/cmd/go/internal/modload/list.go

    			err = commitRequirements(ctx, WriteOpts{})
    		}
    	}
    	return mods, err
    }
    
    func listModules(ctx context.Context, rs *Requirements, args []string, mode ListMode, reuse map[module.Version]*modinfo.ModulePublic) (_ *Requirements, mods []*modinfo.ModulePublic, mgErr error) {
    	if len(args) == 0 {
    		var ms []*modinfo.ModulePublic
    		for _, m := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

        }
    
    fun Requirements.requiresOs(os: Os) {
        contains("teamcity.agent.jvm.os.name", os.agentRequirement)
    }
    
    fun Requirements.requiresArch(os: Os, arch: Arch) {
        if (os == Os.MACOS) {
            contains("teamcity.agent.jvm.os.arch", arch.nameOnMac)
        } else {
            contains("teamcity.agent.jvm.os.arch", arch.nameOnLinuxWindows)
        }
    }
    
    fun Requirements.requiresNotEc2Agent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  3. pkg/url/url.go

    	OpsURL = fmt.Sprintf("%s%s", DocsURL, "ops/")
    
    	// DeploymentRequirements should generate
    	// https://istio.io/v1.7/docs/ops/deployment/requirements/
    	DeploymentRequirements = fmt.Sprintf("%s%s", OpsURL, "deployment/requirements/")
    
    	// ProtocolSelection should generate
    	// https://istio.io/v1.15/docs/ops/configuration/traffic-management/protocol-selection/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 11:12:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. docs/ja/docs/deployment/docker.md

    # (2)
    WORKDIR /code
    
    # (3)
    COPY ./requirements.txt /code/requirements.txt
    
    # (4)
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (5)
    COPY ./app /code/app
    
    # (6)
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    1. 公式のPythonベースイメージから始めます
    
    2. 現在の作業ディレクトリを `/code` に設定します
    
        ここに `requirements.txt` ファイルと `app` ディレクトリを置きます。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.api.Action;
    
    /**
     * Represents a queue of work items with a uniform set of worker requirements.
     *
     * Note that this object is not thread-safe.
     *
     * @since 5.6
     */
    public interface WorkQueue {
        /**
         * Submits a piece of work to be executed asynchronously.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. WORKSPACE

    )
    """,
        ),
    }
    
    pip_parse(
        name = "pypi",
        annotations = NUMPY_ANNOTATIONS,
        python_interpreter_target = interpreter,
        requirements = "//:requirements_lock_" + TF_PYTHON_VERSION.replace(".", "_") + ".txt",
    )
    
    load("@pypi//:requirements.bzl", "install_deps")
    
    install_deps()
    
    # Initialize the TensorFlow repository and all dependencies.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    // use LoadModGraph instead.
    func LoadModFile(ctx context.Context) *Requirements {
    	rs, err := loadModFile(ctx, nil)
    	if err != nil {
    		base.Fatal(err)
    	}
    	return rs
    }
    
    func loadModFile(ctx context.Context, opts *PackageOpts) (*Requirements, error) {
    	if requirements != nil {
    		return requirements, nil
    	}
    
    	Init()
    	var workFile *modfile.WorkFile
    	if inWorkspaceMode() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/validation/validation.go

    // the ErrorList.
    func ValidateResourceRequirements(requirements *v1.ResourceRequirements, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	limPath := fldPath.Child("limits")
    	reqPath := fldPath.Child("requests")
    	for resourceName, quantity := range requirements.Limits {
    		fldPath := limPath.Key(string(resourceName))
    		// Validate resource name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. docs/en/docs/history-design-future.md

    During the development, I also contributed to <a href="https://www.starlette.io/" class="external-link" target="_blank">**Starlette**</a>, the other key requirement.
    
    ## Development
    
    By the time I started creating **FastAPI** itself, most of the pieces were already in place, the design was defined, the requirements and tools were ready, and the knowledge about the standards and specifications was clear and fresh.
    
    ## Future
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    }
    
    func mergeLabelSetWithSelector(matchLabels labels.Set, s labels.Selector) labels.Selector {
    	mergedSelector := labels.SelectorFromSet(matchLabels)
    
    	requirements, ok := s.Requirements()
    	if !ok {
    		return s
    	}
    
    	for _, r := range requirements {
    		mergedSelector = mergedSelector.Add(r)
    	}
    
    	return mergedSelector
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top