Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 420 for pinned (0.28 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            ModelNodeInternal linked = getLink(name);
            return linked != null && predicate.apply(linked);
        }
    
        @Override
        public void applyToLink(ModelActionRole type, ModelAction action) {
            if (!getPath().isDirectChild(action.getSubject().getPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Library.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.component.Component;
    
    /**
     * A library that can be linked into or depended on by another software element.
     */
    @Incubating
    public interface Library extends Component {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 878 bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            def inputFile = targetDir.file("input.txt")
            def linkedDir = file("linked-dir").createLink(targetDir)
    
            inputFile.text = "original"
    
            buildFile << """
                task myTask {
                    def outputFile = file("build/output.txt")
                    inputs.file("linked-dir/input.txt")
                    outputs.file(outputFile)
    
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. docs/multi-user/admin/README.md

    Use [`mc admin policy`](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-policy.html#command-mc.admin.policy) to create custom admin policies.
    
    Create new canned policy file `adminManageUser.json`. This policy enables admin user to
    manage other users.
    
    ```json
    cat > adminManageUser.json << EOF
    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Action": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  In addition, the suite holds a pointer to the head of the linked 
     *  list of associated CU_Test objects.  Finally, pointers to the next 
     *  and previous suites in the linked list are maintained.<br /><br />
     *
     *  Generally, the linked list includes suites which are associated with 
     *  each other in a CU_TestRegistry.  As a result, suites are run in the 
     *  order in which they are registered (see CU_add_suite()).<br /><br />
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. src/runtime/rt0_linux_ppc64.s

    #include "textflag.h"
    #include "asm_ppc64x.h"
    
    DEFINE_PPC64X_FUNCDESC(_rt0_ppc64_linux, _main<>)
    DEFINE_PPC64X_FUNCDESC(main, _main<>)
    
    TEXT _main<>(SB),NOSPLIT,$-8
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  7. src/internal/testpty/pty.go

    }
    
    func (e *PtyError) Unwrap() error { return e.Errno }
    
    var ErrNotSupported = errors.New("testpty.Open not implemented on this platform")
    
    // Open returns a control pty and the name of the linked process tty.
    //
    // If Open is not implemented on this platform, it returns ErrNotSupported.
    func Open() (pty *os.File, processTTY string, err error) {
    	return open()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 19:00:20 UTC 2022
    - 970 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinary.java

     * limitations under the License.
     */
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A {@link NativeLibrary} that has been compiled and linked as a shared library.
     */
    @Incubating
    public interface SharedLibraryBinary extends NativeLibraryBinary {
    
        /**
         * The shared library file.
         */
        File getSharedLibraryFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/sig/sig.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sig holds “code signatures” that can be called
    // and will result in certain code sequences being linked into
    // the final binary. The functions themselves are no-ops.
    package sig
    
    // BoringCrypto indicates that the BoringCrypto module is present.
    func BoringCrypto()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:58:43 UTC 2017
    - 614 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/ReferenceEntry.java

      int getHash();
    
      /** Returns the key for this entry. */
      @CheckForNull
      K getKey();
    
      /*
       * Used by entries that use access order. Access entries are maintained in a doubly-linked list.
       * New entries are added at the tail of the list at write time; stale entries are expired from
       * the head of the list.
       */
    
      /** Returns the time that this entry was last accessed, in ns. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top