Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for GetSink (0.12 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableBinarySpec.java

        /**
         * Provides access to key tasks used for building the binary.
         */
        interface TasksCollection extends BinaryTasksCollection {
            /**
             * The link task.
             */
            Task getLink();
    
            /**
             * The install task.
             */
            Task getInstall();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        NativeExecutableSpec getApplication();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinarySpec.java

         */
        interface TasksCollection extends BinaryTasksCollection {
            /**
             * Returns the link task for this binary.
             */
            Task getLink();
        }
    
        /**
         * The shared library file.
         */
        File getSharedLibraryFile();
    
        /**
         * The shared library link file.
         */
        File getSharedLibraryLinkFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/projection/ManagedModelProjection.java

                        // TODO we are relying on the registration having established these links, we should be checking
                        MutableModelNode propertyNode = modelNode.getLink(propertyName);
                        propertyNode.ensureUsable();
    
                        ModelView<? extends T> modelView;
                        if (writable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMaps.java

                        ModelMapModelProjection.unmanaged(elementModelType, ChildNodeInitializerStrategyAccessors.fromPrivateData())
                    )
                    .build()
            );
            MutableModelNode mapNode = modelNode.getLink(name);
            assert mapNode != null;
            return mapNode;
        }
    
        public static <T> ModelMap<T> toView(MutableModelNode mapNode, ModelType<T> elementModelType) {
            mapNode.ensureUsable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/NativeTestSuiteBinarySpec.java

        /**
         * Provides access to key tasks used for building the binary.
         */
        interface TasksCollection extends TestSuiteTaskCollection {
            /**
             * The link task.
             */
            Task getLink();
    
            /**
             * The install task.
             */
            Task getInstall();
    
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        NativeTestSuiteSpec getTestSuite();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

            private final String link;
    
            public NavigationItem(String text, String link) {
                this.text = text;
                this.link = link;
            }
    
            public String getLink() {
                return link;
            }
    
            public String getText() {
                return text;
            }
        }
    
        protected static class MetricsHtml extends Html {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            return target == null ? Collections.<String>emptySet() : target.getLinkNames();
        }
    
        @Nullable
        @Override
        public ModelNodeInternal getLink(String name) {
            return target == null ? null : target.getLink(name);
        }
    
        @Override
        public Iterable<? extends ModelNodeInternal> getLinks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                }
                if (link.startsWith("/")) {
                    redirect = ftpInfo.toUrl(file.getLink());
                } else if (link.startsWith("../")) {
                    redirect = ftpInfo.toChildUrl(file.getLink());
                } else {
                    redirect = ftpInfo.toChildUrl("../" + file.getLink());
                }
                if (!uri.equals(redirect)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. pkg/proxy/util/nfacct/nfacct_linux_test.go

    // maintains a list for netlink attributes, and stores a predefined response and an optional
    // error for subsequent execution.
    type fakeRequest struct {
    	// cmd and flags which were used to create the request.
    	cmd   int
    	flags uint16
    
    	// data holds netlink attributes.
    	data []nl.NetlinkRequestData
    
    	// response and err are the predefined output of execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
            return links == null ? null : links.get(name);
        }
    
        @Override
        public Iterable<? extends ModelNodeInternal> getLinks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top