Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for internally (0.34 sec)

  1. pkg/config/constants/constants.go

    	// Label to skip config comparison.
    	AlwaysPushLabel = "internal.istio.io/always-push"
    
    	// InternalParentNames declares the original resources of an internally-generated config.
    	// This is used by k8s gateway-api.
    	// It is a comma separated list. For example, "HTTPRoute/foo.default,HTTPRoute/bar.default"
    	InternalParentNames      = "internal.istio.io/parents"
    	InternalRouteSemantics   = "internal.istio.io/route-semantics"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/make.bash

    # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    # packages that use cgo.  Set to 0 to do all linking internally.  This
    # controls the default behavior of the linker's -linkmode option.  The
    # default value depends on the system.
    #
    # GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used
    # by the internal linker.
    #
    # CC: Command line to run to compile C code for GOHOSTARCH.
    # Default is "gcc". Also supported: "clang".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/net/rpc/server.go

    	typ    reflect.Type           // type of the receiver
    	method map[string]*methodType // registered methods
    }
    
    // Request is a header written before every RPC call. It is used internally
    // but documented here as an aid to debugging, such as when analyzing
    // network traffic.
    type Request struct {
    	ServiceMethod string   // format: "Service.Method"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			if userFilter.GetTypedConfig() != nil {
    				IncrementEnvoyFilterMetric(lp.Key(), NetworkFilter, true)
    				// user has any typed struct
    				// The type may not match up exactly. For example, if we use v2 internally but they use v3.
    				// Assuming they are not using deprecated/new fields, we can safely swap out the TypeUrl
    				// If we did not do this, merge.Merge below will panic (which is recovered), so even though this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/asm.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package amd64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"log"
    )
    
    func PADDR(x uint32) uint32 {
    	return x &^ 0x80000000
    }
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/manually.md

    <div class="termy">
    
    ```console
    $ hypercorn main:app --worker-class trio
    ```
    
    </div>
    
    And that will start Hypercorn with your app using Trio as the backend.
    
    Now you can use Trio internally in your app. Or even better, you can use AnyIO, to keep your code compatible with both Trio and asyncio. ๐ŸŽ‰
    
    ## Deployment Concepts
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/c/eager/immediate_execution_context.h

      ~ImmediateExecutionContext() override {}
    };
    
    namespace internal {
    struct ImmediateExecutionContextDeleter {
      void operator()(ImmediateExecutionContext* p) const {
        if (p != nullptr) {
          p->Release();
        }
      }
    };
    }  // namespace internal
    
    using ImmediateContextPtr =
        std::unique_ptr<ImmediateExecutionContext,
                        internal::ImmediateExecutionContextDeleter>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

            return new RegularImmutableList<E>(castedList);
        }
      }
    
      /**
       * Views the array as an immutable list. The array must have only {@code E} elements.
       *
       * <p>The array must be internally created.
       */
      @SuppressWarnings("unchecked") // caller is reponsible for getting this right
      static <E> ImmutableList<E> asImmutableList(Object[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/handling-errors.md

    But the client/user will not see it. Instead, the client will receive an "Internal Server Error" with a HTTP status code `500`.
    
    It should be this way because if you have a Pydantic `ValidationError` in your *response* or anywhere in your code (not in the client's *request*), it's actually a bug in your code.
    
    And while you fix it, your clients/users shouldn't have access to internal information about the error, as that could expose a security vulnerability.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/net/http/cgi/host.go

    	// PathLocationHandler specifies the root http Handler that
    	// should handle internal redirects when the CGI process
    	// returns a Location header value starting with a "/", as
    	// specified in RFC 3875 ยง 6.3.2. This will likely be
    	// http.DefaultServeMux.
    	//
    	// If nil, a CGI response with a local URI path is instead sent
    	// back to the client and not redirected internally.
    	PathLocationHandler http.Handler
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top