Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 249 for mysite (0.18 sec)

  1. src/cmd/go/testdata/vendormod.txt

    // +build appengine
    
    package m
    
    import _ "appengine"
    import _ "appengine/datastore"
    -- go.mod --
    module m
    
    require (
    	a v1.0.0
    	mysite/myname/mypkg v1.0.0
    	w v1.0.0 // indirect
    	x v1.0.0
    	y v1.0.0
    	z v1.0.0
    )
    
    replace (
    	a v1.0.0 => ./a
    	mysite/myname/mypkg v1.0.0 => ./mypkg
    	w v1.0.0 => ./w
    	x v1.0.0 => ./x
    	y v1.0.0 => ./y
    	z v1.0.0 => ./z
    )
    -- mypkg/go.mod --
    module me
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build-flat.gradle

    plugins {
        id 'org.myorg.site'
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
        websiteUrl = 'https://gradle.org'
        vcsUrl = 'https://github.com/gradle/gradle-site-plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 197 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/build.gradle

    plugins {
        id 'org.myorg.site'
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
    
        siteInfo {
            websiteUrl = 'https://gradle.org'
            vcsUrl = 'https://github.com/gradle/gradle-site-plugin'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 227 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/build-flat.gradle.kts

    plugins {
        id("org.myorg.site")
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
        websiteUrl = "https://gradle.org"
        vcsUrl = "https://github.com/gradle/gradle-site-plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/build.gradle.kts

    plugins {
        id("org.myorg.site")
    }
    
    site {
        outputDir = layout.buildDirectory.file("mysite")
    
        siteInfo {
            websiteUrl = "https://gradle.org"
            vcsUrl = "https://github.com/gradle/gradle-site-plugin"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 228 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor.txt

    module m
    
    go 1.13
    
    require (
    	a v1.0.0
    	diamondroot v0.0.0
    	mysite/myname/mypkg v1.0.0
    	w v1.0.0 // indirect
    	x v1.0.0
    	y v1.0.0
    	z v1.0.0
    )
    
    replace (
    	a v1.0.0 => ./a
    	diamondleft => ./diamondleft
    	diamondpoint => ./diamondpoint
    	diamondright => ./diamondright
    	diamondroot => ./diamondroot
    	mysite/myname/mypkg v1.0.0 => ./mypkg
    	w v1.0.0 => ./w
    	x v1.0.0 => ./x
    	y v1.0.0 => ./y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_simulation_test.go

    metadata:
      name: vs1
      namespace: default
    spec:
      gateways:
      - istio-system/ingressgateway
      hosts:
      - mysite.example.com
      tls:
      - match:
        - port: 443
          sniHosts:
          - mysite.example.com
        route:
        - destination:
            host: mysite.default.svc.cluster.local
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_path_params/test_tutorial004.py

    client = TestClient(app)
    
    
    def test_file_path():
        response = client.get("/files/home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
        assert response.json() == {"file_path": "home/johndoe/myfile.txt"}
    
    
    def test_root_file_path():
        response = client.get("/files//home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/runtime/msize.go

    Michael Anthony Knyszek <******@****.***> 1712634066 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        private static boolean differenceIsSignificant(DataSeries<Duration> myTime, DataSeries<Duration> otherTime, double minConfidence) {
            return (myTime.median - otherTime.median).abs() > MINIMUM_DIFFERENCE_WE_CAN_MEASURE &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top