Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 789 for Rays (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiBuildableEclipseModelFixesCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    import spock.lang.Issue
    
    class ToolingApiBuildableEclipseModelFixesCrossVersionSpec extends ToolingApiSpecification {
        @Issue("GRADLE-1529")
        //this is just one of the ways of fixing the problem. See the issue for details
        def "should not show not executable tasks"() {
            file('build.gradle') << '''
    task a
    task b
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. docs/sts/tls.md

    Further, the temp. S3 credentials will never out-live the client certificate. For example, if the `MINIO_IDENTITY_TLS_STS_EXPIRY` is 7 days but the certificate itself is only valid for the next 3 days, then MinIO will return S3 credentials that are valid for 3 days only.
    
    ## Caveat
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. test/alias.go

    // errorcheck
    
    // Copyright 2011 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.
    
    // Test that error messages say what the source file says
    // (uint8 vs byte, int32 vs. rune).
    // Does not compile.
    
    package main
    
    import (
    	"fmt"
    	"unicode/utf8"
    )
    
    func f(byte)  {}
    func g(uint8) {}
    
    func main() {
    	var x float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 588 bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/extensions.kt

    /**
     * Define clean up rules for the project.
     * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules
     *
     * @param historyDays days number of days to store build history .
     * @param artifactsDays number of days to store artifacts. In the stored history, artifacts older than this number will be cleaned up.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/SECURITY.md

    Please disclose it at [security advisory](https://github.com/ianlancetaylor/demangle/security/advisories/new).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 686 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_exec_toolchain.txt

    cp go.mod.new go.mod
    go get go@1.22.1
    stderr '^go: updating go.mod requires go >= 1.22.1; switching to go1.22.9$'
    stderr '^go: upgraded go 1.1 => 1.22.1$'
    stderr '^go: added toolchain go1.22.9$'
    
    # go get needgo122 (says 'go 1.22') should use 1.22.0, the earliest release we have available
    # (ignoring prereleases).
    env GOTOOLCHAIN=local
    cp go.mod.new go.mod
    ! go get rsc.io/needgo122
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Gradle runs the configuration phase on every build. If you trigger dependency resolution
    during the configuration phase, every build pays that cost.
    
    ==== Switch to declarative syntax
    
    If you evaluate a configuration file, your project pays the cost of dependency resolution during configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/net/tcpconn_keepalive_conf_windows_test.go

    )
    
    type fdType = syscall.Handle
    
    func maybeSkipKeepAliveTest(t *testing.T) {
    	// TODO(panjf2000): Unlike Unix-like OS's, old Windows (prior to Windows 10, version 1709)
    	// 	doesn't provide any ways to retrieve the current TCP keep-alive settings, therefore
    	// 	we're not able to run the test suite similar to Unix-like OS's on Windows.
    	//  Try to find another proper approach to test the keep-alive settings on old Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 987 bytes
    - Viewed (0)
  9. tests/test_tutorial/test_websockets/test_tutorial003_py39.py

            connection.send_text("Hello from 1234")
            data1 = connection.receive_text()
            assert data1 == "You wrote: Hello from 1234"
            data2 = connection_two.receive_text()
            client1_says = "Client #1234 says: Hello from 1234"
            assert data2 == client1_says
            data1 = connection.receive_text()
            assert data1 == client1_says
            connection_two.close()
            data1 = connection.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue23188.go

    // license that can be found in the LICENSE file.
    
    // Test order of evaluation of index operations.
    
    package main
    
    func main() {
    	arr := []int{1, 2}
    
    	// The spec says that in an assignment statement the operands
    	// of all index expressions and pointer indirections on the
    	// left, and the expressions on the right, are evaluated in
    	// the usual order. The usual order means function calls and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 21:30:26 UTC 2018
    - 943 bytes
    - Viewed (0)
Back to top