Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 608 for mylibs (0.53 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

               ${mavenCentralRepository()}
    
               dependencies {
                   runtimeOnly 'commons-io:commons-io:1.4'
                   runtimeOnly files('libs/myFoo.jar')
               }
    
               eclipse.pathVariables MY_LIBS: file('libs')
            """
    
            //when
            executer.withTasks("eclipse").run()
    
            //then
            def classpath = getClasspath()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    The typical example is that using a single dependency declaration `project(":myLib")`, we would either choose the `arm64` or `i386` version of `myLib` depending on the architecture.
    
    To do this, we will add attributes to both the consumer and the producer.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;\f1\fnil\fcharset0 Menlo-Regular;\f2\fnil\fcharset0 Menlo-Italic; } {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs24 \cf0 Task \f1 publish \f2\i MyLib \f1\i0 PublicationTo \f2\i MyRepo \f1\i0 Repository}WrapNOBounds{{336.3999964594841, 32.099998712539673}, {144, 67.83999964594841}}ClassShapedGraphicFo{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    ## Usage in a Maven repository
    
    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         * ```
         * typealias MyString = String
         * typealias MyList<A> = List<A>
         *
         * val list: MyList<MyString> = listOf()
         * ```
         *
         * `MyList<MyString>` may be expanded to a type `List<String>` with an abbreviated type `MyList<String>`, where `String` also has the
         * abbreviated type `MyString`. The abbreviated type is not `MyList<MyString>`, although it might be rendered as such.
         *
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(fd int) (nfd int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_dup_trampoline), uintptr(fd), 0, 0)
    	nfd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_dup_trampoline()
    
    //go:cgo_import_dynamic libc_dup dup "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/symtab.go

    			}
    			putplan9sym(ctxt, ldr, s, char)
    		}
    	}
    }
    
    type byPkg []*sym.Library
    
    func (libs byPkg) Len() int {
    	return len(libs)
    }
    
    func (libs byPkg) Less(a, b int) bool {
    	return libs[a].Pkg < libs[b].Pkg
    }
    
    func (libs byPkg) Swap(a, b int) {
    	libs[a], libs[b] = libs[b], libs[a]
    }
    
    // Create a table with information on the text sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_darwin_amd64.go

    	written = int(length)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_sendfile_trampoline()
    
    //go:cgo_import_dynamic libc_sendfile sendfile "/usr/lib/libSystem.B.dylib"
    
    // Implemented in the runtime package (runtime/sys_darwin_64.go)
    func syscallX(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_darwin_arm64.go

    	written = int(length)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_sendfile_trampoline()
    
    //go:cgo_import_dynamic libc_sendfile sendfile "/usr/lib/libSystem.B.dylib"
    
    // Implemented in the runtime package (runtime/sys_darwin_64.go)
    func syscallX(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

            }
        }
    
        /**
         * Resolves the return type of a method in a given class.
         *
         * For example, for {@code MyList implements List<String>}, resolving the return type of {@link List#get(int)} in {@code MyList} yields {@link String}.
         */
        public static <T> Type resolveMethodReturnType(Class<T> type, Method method) {
            Type returnType = method.getGenericReturnType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top