Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,398 for Seven (0.06 sec)

  1. src/cmd/go/testdata/script/mod_invalid_path.txt

    # it isn't even a valid import path.
    # The single quote and backtick are the only characters which are not allowed
    # but are a valid Windows file name.
    cd $WORK/'gopath/src/m''d'
    ! go mod init
    stderr 'cannot determine module path'
    
    # Test that a go.mod file is rejected when its module declaration has a path that can't
    # possibly be a module path, because it isn't even a valid import path
    cd $WORK/gopath/src/badname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndXResponse.java

     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/types/testdata/examples/functions.go

    	// it can be inferred from the provided argument's type.
    	Reverse([]string{"foo", "bar"})
    	Reverse([]struct{x, y int}{{1, 2}, {2, 3}, {3, 4}})
    
    	// But the incoming argument must have a type, even if it's a
    	// default type. An untyped nil won't work.
    	// Reverse(nil) // this won't type-check
    
    	// A typed nil will work, though.
    	Reverse([]int(nil))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    		{"0x2.8p-149", math.Float32frombits(0x000000002), Below}, // rounded down to even
    		{"0x2.9p-149", math.Float32frombits(0x000000003), Above},
    
    		{"0x3.0p-149", math.Float32frombits(0x000000003), Exact},
    		{"0x3.7p-149", math.Float32frombits(0x000000003), Below},
    		{"0x3.8p-149", math.Float32frombits(0x000000004), Above}, // rounded up to even
    
    		{"0x4.0p-149", math.Float32frombits(0x000000004), Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/path-operation-advanced-configuration.md

    !!! tip
        If you manually call `app.openapi()`, you should update the `operationId`s before that.
    
    !!! warning
        If you do this, you have to make sure each one of your *path operation functions* has a unique name.
    
        Even if they are in different modules (Python files).
    
    ## Exclude from OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list -m -u -f' exposes the deprecation message.
    go list -m -u -f {{.Deprecated}} example.com/deprecated/a
    stdout '^in example.com/deprecated/a@v1.9.0$'
    
    # This works even if we use an old version that does not have the deprecation
    # message in its go.mod file.
    go get example.com/deprecated/a@v1.0.0
    ! grep Deprecated: $WORK/gopath/pkg/mod/cache/download/example.com/deprecated/a/@v/v1.0.0.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                    new StyledTable.Row(["tiny", "even longer"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
                | a         | b           |
                |-----------|-------------|
                | foo       | bar         |
                | very long | short       |
                | tiny      | even longer |
            """.stripIndent(true).trim()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "creates directories even if there is a pre-existing file in its place"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir << "This should become a directory"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_flags.txt

    ! stderr .
    
    # For backward-compatibility with previous releases of the 'go' command,
    # arguments that appear after unrecognized flags should not be treated
    # as packages, even if they are unambiguously not arguments to flags.
    # Even though ./x looks like a package path, the real package should be
    # the implicit '.'.
    ! go test --answer=42 ./x
    stderr '^no Go files in '$PWD'$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
Back to top