Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for additional (0.45 sec)

  1. fastapi/applications.py

                Doc(
                    """
                    Additional responses to be shown in OpenAPI.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/).
    
                    And in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // the file is considered to have an implicit build constraint requiring
    // those terms (in addition to any explicit constraints in the file).
    //
    // Using GOOS=android matches build tags and files as for GOOS=linux
    // in addition to android tags and files.
    //
    // Using GOOS=illumos matches build tags and files as for GOOS=solaris
    // in addition to illumos tags and files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!--
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //    dependent goroutines on the same thread; and introduce additional latency.
    // 3. Unpark an additional thread whenever we ready a goroutine and there is an
    //    idle P, but don't do handoff. This would lead to excessive thread parking/
    //    unparking as the additional threads will instantly park without discovering
    //    any work to do.
    //
    // The current approach:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    append(s S, x ...T) S  // T is the element type of S
    </pre>
    
    <p>
    If the capacity of <code>s</code> is not large enough to fit the additional
    values, <code>append</code> allocates a new, sufficiently large underlying
    array that fits both the existing slice elements and the additional values.
    Otherwise, <code>append</code> re-uses the underlying array.
    </p>
    
    <pre>
    s0 := []int{0, 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            *tfl_broadcast_to_op.getOutput().getUsers().begin());
    
        // Check that the outermost reshape_op in the pattern does not add
        // additional elements to the final output tensor.
        // TODO: b/323217483. This code needs to generalized to additional cases.
        // For example- inner-shape = [1, 1, 1, 8, 1, 10],
        // broadcast_shape = [1, 1, 1, 8, 16, 10] & outer_shape = [1, 1, 1, 1280, 1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	// Unexported fields are not part of the public API.
    	Build             *build.Package
    	Imports           []*Package           // this package's direct imports
    	CompiledImports   []string             // additional Imports necessary when using CompiledGoFiles (all from standard library); 1:1 with the end of PackagePublic.Imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        both the outermost element type of tensors as well as the nested component
        type (e.g., for tensor lists).
    
        During shape refinement this pass may insert additional cast operations as
        well as fold some constant shape computations to enable more exact shape
        inference. Therefore it does do some mutation of the graph. Constant folding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional ids for user %q", kubeletUser)
    	}
    	outGids, err := exec.Command(cmd, "-g", kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional gids for user %q", kubeletUser)
    	}
    	if string(outUids) != string(outGids) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Class", Type: "string", Description: "The name of the IngressClass resource that should be used for additional configuration"},
    		{Name: "Hosts", Type: "string", Description: "Hosts that incoming requests are matched against before the ingress rule"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top