Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 587 for Replies (5.37 sec)

  1. platforms/jvm/war/src/test/groovy/org/gradle/api/plugins/WarPluginTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    import static org.gradle.api.tasks.TaskDependencyMatchers.dependsOn
    
    class WarPluginTest extends AbstractProjectBuilderSpec {
        def "applies Java plugin and adds convention"() {
            when:
            project.pluginManager.apply(WarPlugin)
    
            then:
            project.getPlugins().hasPlugin(JavaPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattachment/strategy.go

    )
    
    // volumeAttachmentStrategy implements behavior for VolumeAttachment objects
    type volumeAttachmentStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // VolumeAttachment objects via the REST API.
    var Strategy = volumeAttachmentStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (volumeAttachmentStrategy) NamespaceScoped() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 06 21:19:19 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. src/runtime/cgo/mmap.go

    import _ "unsafe"
    
    // When using cgo, call the C library for mmap, so that we call into
    // any sanitizer interceptors. This supports using the memory
    // sanitizer with Go programs. The memory sanitizer only applies to
    // C/C++ code; this permits that code to see the Go code as normal
    // program addresses that have been initialized.
    
    // To support interceptors that look for both mmap and munmap,
    // also call the C library for munmap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/TargetPlatformConfiguration.java

    public interface TargetPlatformConfiguration {
        /**
         * Returns whether a platform is supported or not.
         */
        boolean supportsPlatform(NativePlatformInternal targetPlatform);
    
        /**
         *  applies a platform specific toolchain configuration
         */
        void apply(DefaultGccPlatformToolChain platformToolChain);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterAppliesTo.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.eclipse.model;
    
    /**
     * Specifies the type of resource that the Eclipse {@link ResourceFilter} applies to.
     *
     * @since 3.5
     */
    public enum ResourceFilterAppliesTo {
        FILES,
        FOLDERS,
        FILES_AND_FOLDERS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 861 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/vendor_gopath_issue11409.txt

    [!GOOS:windows] [short] stop 'this test only applies to Windows'
    env GO111MODULE=off
    
    go build run_go.go
    exec ./run_go$GOEXE $GOPATH $GOPATH/src/vend/hello
    stdout 'hello, world'
    
    -- run_go.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    )
    
    func changeVolume(s string, f func(s string) string) string {
    	vol := filepath.VolumeName(s)
    	return f(vol) + s[len(vol):]
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 982 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/util/exportto.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    // IsExportToAllNamespaces returns true if export to applies to all namespaces
    // and false if it is set to namespace local.
    func IsExportToAllNamespaces(exportTos []string) bool {
    	exportedToAll := false
    	for _, e := range exportTos {
    		if e == ExportToAllNamespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         * <p>
         * Note that the provided configuration action only applies incremental modifications on top of whatever permission
         * the user has at the moment and that the default values permissions start out are different for files and directories
         * (see {@link UserClassFilePermissions}).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/doc.go

    //
    // The unsafeptr analyzer reports likely incorrect uses of unsafe.Pointer
    // to convert integers to pointers. A conversion from uintptr to
    // unsafe.Pointer is invalid if it implies that there is a uintptr-typed
    // word in memory that holds a pointer value, because that word will be
    // invisible to stack copying and to the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 738 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// Zero the permutation's state.
    	for i := range d.a {
    		d.a[i] = 0
    	}
    	d.state = spongeAbsorbing
    	d.i, d.n = 0, 0
    }
    
    func (d *state) clone() *state {
    	ret := *d
    	return &ret
    }
    
    // permute applies the KeccakF-1600 permutation. It handles
    // any input-output buffering.
    func (d *state) permute() {
    	switch d.state {
    	case spongeAbsorbing:
    		// If we're absorbing, we need to xor the input into the state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top