Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,565 for Applies (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/audit/context.go

    // captured and the evaluated policy that applies to the given request.
    const auditKey key = iota
    
    // AuditContext holds the information for constructing the audit events for the current request.
    type AuditContext struct {
    	// RequestAuditConfig is the audit configuration that applies to the request
    	RequestAuditConfig RequestAuditConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Nonnull.java

    import java.lang.annotation.Target;
    
    /**
     * The annotated element must not be null.
     * <p>
     * Annotated fields must not be null after construction has completed.
     * <p>
     * When this annotation is applied to a method it applies to the method return value.
     *
     * @see Nullable
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
         * will also have no value and the transformation will not be called.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testdata/sample.go

    // "/* ERROR " or "// ERROR ".
    //
    /*ERROR*/
    /*ERROR foo*/
    /* ERRORfoo */
    /*  ERROR foo */
    //ERROR
    // ERROR
    // ERRORfoo
    //  ERROR foo
    
    // This is a valid error comment; it applies to the
    // immediately following token. 
    import "math" /* ERROR unexpected comma */ ,
    
    // If there are multiple /*-style error comments before
    // the next token, only the last one is considered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 951 bytes
    - Viewed (0)
Back to top