Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 542 for sometime (0.25 sec)

  1. src/runtime/cgo/iscgo.go

    // for runtime·iscgo. Override it to tell the runtime we're here.
    // There are various function pointers that should be set too,
    // but those depend on dynamic linker magic to get initialized
    // correctly, and sometimes they break. This variable is a
    // backup: it depends only on old C style static linking rules.
    
    package cgo
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname _iscgo runtime.iscgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 646 bytes
    - Viewed (0)
  2. releasenotes/notes/47703.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 13:04:52 UTC 2023
    - 193 bytes
    - Viewed (0)
  3. releasenotes/notes/xds-partial-full.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 37989
    - 37974
    
    releaseNotes:
    - |
      **Improved** XDS generation to send less resource when possible, sometimes omitting a response entirely.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 317 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.GenerateIdeaModule.xml

                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/<replaceable>${project.name}</replaceable>.iml</literal>
                        (sometimes the <replaceable>project.name</replaceable> is prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/feature_request.md

    labels: enhancement
    assignees: ''
    
    ---
    
    Start by telling us what problem you’re trying to solve. Often a solution already exists!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 18:42:51 UTC 2018
    - 350 bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/ParameterMetaDataTest.groovy

        def "formats signature"() {
            MethodMetaData method = Mock()
            def parameter = new ParameterMetaData('param')
            def type = new TypeMetaData('org.gradle.SomeType')
            parameter.type = type
    
            expect:
            parameter.signature == 'org.gradle.SomeType param'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractCacheCleanupTest.groovy

            cacheEntries[2].assertExists()
            deletedFiles == [cacheEntries[1]]
        }
    
        def "can delete directories"() {
            given:
            def cacheEntry = cacheDir.file("subDir").createFile("somefile")
            cacheEntry.text = "delete me"
    
            when:
            cleanupAction(finder([cacheEntry.parentFile]), { true })
                .clean(cleanableStore, progressMonitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/locking/ExclusiveFileAccessManagerTest.groovy

            when:
            manager.access(fileWithSameNameAsDirectory.file('someFile.zip')) {
            }
    
            then:
            RuntimeException e = thrown()
            e.message == "Could not create parent directory for lock file ${fileWithSameNameAsDirectory.file('someFile.zip.lck').absolutePath}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    tree.visit {element ->
        println "$element.relativePath => $element.file"
    }
    // end::use[]
    
    // tag::archive-trees[]
    // Create a ZIP file tree using path
    FileTree zip = zipTree('someFile.zip')
    
    // Create a TAR file tree using path
    FileTree tar = tarTree('someFile.tar')
    
    //tar tree attempts to guess the compression based on the file extension
    //however if you must specify the compression explicitly you can:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/doc.go

    // in the signatures of methods similar to well-known interfaces.
    //
    // # Analyzer stdmethods
    //
    // stdmethods: check signature of methods of well-known interfaces
    //
    // Sometimes a type may be intended to satisfy an interface but may fail to
    // do so because of a mistake in its method signature.
    // For example, the result of this WriteTo method should be (int64, error),
    // not error, to satisfy io.WriterTo:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top