Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 2,601 for Here (0.35 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-386.txt

    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 296 bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/utils.go

    // action.
    func getServiceFromDeleteAction(obj interface{}) *corev1.Service {
    	if service, ok := obj.(*corev1.Service); ok {
    		return service
    	}
    	// If we reached here it means the Service was deleted but its final state
    	// is unrecorded.
    	tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    	if !ok {
    		utilruntime.HandleError(fmt.Errorf("couldn't get object from tombstone %#v", obj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/net/internal/cgotest/empty_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    import "testing"
    
    // Nothing to test here.
    // The test is that the package compiles at all.
    // See resstate.go.
    func Test(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 317 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    Dependencies declared here are thus visible to the `main` and `test` compilation classpaths.
    
    `providedRuntime`::
    This configuration should be used for dependencies required at runtime but which are provided by the environment in which the WAR is deployed.
    Dependencies declared here are only visible to the `main` and `test` runtime classpaths.
    
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. docs_src/custom_response/tutorial003.py

    from fastapi import FastAPI
    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items():
        html_content = """
        <html>
            <head>
                <title>Some HTML in here</title>
            </head>
            <body>
                <h1>Look ma! HTML!</h1>
            </body>
        </html>
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 394 bytes
    - Viewed (0)
  6. src/math/tan.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_badzip_v1.0.0.txt

    rsc.io/badzip v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badzip
    -- .info --
    {"Version":"v1.0.0"}
    -- x.go --
    package x
    -- /rsc.io/******@****.*** --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 16 17:49:55 UTC 2018
    - 186 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_minus_n.txt

    # The intent here is to verify that 'go test -n' works without crashing.
    # Any test will do.
    
    go test -n x_test.go
    
    -- x_test.go --
    package x_test
    
    import (
    	"testing"
    )
    
    func TestEmpty(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 07 16:44:14 UTC 2020
    - 204 bytes
    - Viewed (0)
  9. docs/sts/wso2.md

    **We recommend setting `policy` as a custom claim for the JWT service provider follow [here](https://docs.wso2.com/display/IS550/Configuring+Claims+for+a+Service+Provider) and [here](https://docs.wso2.com/display/IS550/Handling+Custom+Claims+with+the+JWT+Bearer+Grant+Type) for relevant docs on how to configure claims for a service provider.**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/swiftLibrary/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'swift-library'
    }
    // end::apply-plugin[]
    
    // tag::dependency-management[]
    library {
        dependencies {
            // FIXME: Write better deps here.
            api "io.qt:core:5.1"
            implementation "io.qt:network:5.1"
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = [
            machines.linux.x86_64,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
Back to top