Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for internally (0.18 sec)

  1. 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)
  2. src/runtime/export_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Export guts for testing.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    var Fadd64 = fadd64
    var Fsub64 = fsub64
    var Fmul64 = fmul64
    var Fdiv64 = fdiv64
    var F64to32 = f64to32
    var F32to64 = f32to64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. fastapi/routing.py

                    """
                ),
            ] = None,
            dependency_overrides_provider: Annotated[
                Optional[Any],
                Doc(
                    """
                    Only used internally by FastAPI to handle dependency overrides.
    
                    You shouldn't need to use it. It normally points to the `FastAPI` app
                    object.
                    """
                ),
            ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. pkg/util/async/bounded_frequency_runner.go

    // which will manage runs of the specified function.
    //
    // All runs will be async to the caller of BoundedFrequencyRunner.Run, but
    // multiple runs are serialized. If the function needs to hold locks, it must
    // take them internally.
    //
    // Runs of the function will have at least minInterval between them (from
    // completion to next start), except that up to bursts may be allowed.  Burst
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    func TestConvertTypesWhenDefaultNamesMatch(t *testing.T) {
    	internalGV := schema.GroupVersion{Version: runtime.APIVersionInternal}
    	externalGV := schema.GroupVersion{Version: "v1"}
    
    	s := runtime.NewScheme()
    	// create two names internally, with TestType1 being preferred
    	s.AddKnownTypeWithName(internalGV.WithKind("TestType1"), &runtimetesting.TestType1{})
    	s.AddKnownTypeWithName(internalGV.WithKind("OtherType1"), &runtimetesting.TestType1{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      func.func @f() attributes { tf_saved_model.exported_names = ["f"] } {
        // expected-error@+1 {{exported function cannot be internally referenced}}
        "some_dialect.some_call"() { callee = @g } : () -> ()
        func.return
      }
    
      // expected-note@+1 {{references this exported function}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/UniAddress.java

    import jcifs.smb1.netbios.NbtAddress;
    import jcifs.smb1.util.LogStream;
    
    /**
     * <p>Under normal conditions it is not necessary to use
     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb1.smb1</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.smb1.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. fastapi/applications.py

            self.setup()
    
        def openapi(self) -> Dict[str, Any]:
            """
            Generate the OpenAPI schema of the application. This is called by FastAPI
            internally.
    
            The first time it is called it stores the result in the attribute
            `app.openapi_schema`, and next times it is called, it just returns that same
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/a.go

    package a
    
    import (
    	"fmt"
    )
    
    // Element is an element of a linked list.
    type Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    	next, prev *Element[T]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top