Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,036 for link66 (0.31 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseLinkedResource.java

         * <p>
         * See the official Eclipse documentation for most up-to-date information on properties of a linked resource
         *
         * @return Eclipse link type
         */
        String getType();
    
        /**
         * The local file system absolute path of the target of the linked resource. For example: '/path/to/somewhere'.
         * Mutually exclusive with 'locationUri'
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-log-link.png

    teamcity-log-link.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/build.gradle

            all {
                //on macOS we need different linker settings than on Linux or Windows
                if (targetPlatform.operatingSystem.macOsX) {
                    linker.args "-framework", "Foundation"
                } else {
                    objcppCompiler.args "-I/usr/include/GNUstep", "-I/usr/local/include/objc", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                    linker.args "-lgnustep-base", "-lobjc"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 743 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

            this.source.from(source);
        }
    
        /**
         * Adds a set of library files to be linked. The provided libs object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        public void lib(Object libs) {
            this.libs.from(libs);
        }
    
        /**
         * The linker used, including the type and the version.
         *
         * @since 4.7
         */
        @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. test/codegen/math.go

    	// arm64:"FRINTMD"
    	// ppc64x:"FRIM"
    	// wasm:"F64Floor"
    	sink64[1] = math.Floor(x)
    
    	// s390x:"FIDBR\t[$]1"
    	// arm64:"FRINTAD"
    	// ppc64x:"FRIN"
    	sink64[2] = math.Round(x)
    
    	// amd64/v2:-".*x86HasSSE41" amd64/v3:-".*x86HasSSE41"
    	// amd64:"ROUNDSD\t[$]3"
    	// s390x:"FIDBR\t[$]5"
    	// arm64:"FRINTZD"
    	// ppc64x:"FRIZ"
    	// wasm:"F64Trunc"
    	sink64[3] = math.Trunc(x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    				return EOPNOTSUPP
    			}
    		}
    		return err
    	}
    	return fchmodat(dirfd, path, mode)
    }
    
    //sys	linkat(olddirfd int, oldpath string, newdirfd int, newpath string, flags int) (err error)
    
    func Link(oldpath string, newpath string) (err error) {
    	return linkat(_AT_FDCWD, oldpath, _AT_FDCWD, newpath, 0)
    }
    
    func Mkdir(path string, mode uint32) (err error) {
    	return Mkdirat(_AT_FDCWD, path, mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

         * such that the action is applied only to those linked nodes with a view of the requested type available that
         * also satisfy the predicate.
         */
        void applyTo(NodePredicate predicate, ModelActionRole role, ModelAction action);
    
        /**
         * Applies an action to a linked node.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gccgo.go

    		// -lgo -lpthread -lm in the final link. We can't use
    		// -r to pick them up because we can't combine
    		// split-stack and non-split-stack code in a single -r
    		// link, and libgo picks up non-split-stack code from
    		// libffi.
    		ldflags = append(ldflags, "-Wl,-r", "-nostdlib")
    		ldflags = append(ldflags, goLibBegin...)
    
    		if nopie := b.gccNoPie([]string{tools.linker()}); nopie != "" {
    			ldflags = append(ldflags, nopie)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            content.assertDoesNotExist()
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "recreates target directory when symlink is found, leaving linked content untouched"() {
            def linked = tmpDir.createDir("linked")
            def content = linked.createFile("content.txt")
            def target = tmpDir.file("target").tap { Files.createSymbolicLink(it.toPath(), linked.toPath()) }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cppCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    // end::all-binaries[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top