Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,195 for fadds (0.05 sec)

  1. pkg/kubelet/lifecycle/interfaces.go

    type PodAdmitHandlers []PodAdmitHandler
    
    // AddPodAdmitHandler adds the specified observer.
    func (handlers *PodAdmitHandlers) AddPodAdmitHandler(a PodAdmitHandler) {
    	*handlers = append(*handlers, a)
    }
    
    // PodSyncLoopHandlers maintains a list of handlers to pod sync loop.
    type PodSyncLoopHandlers []PodSyncLoopHandler
    
    // AddPodSyncLoopHandler adds the specified observer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/exceptions/DiagnosticsVisitor.java

    public interface DiagnosticsVisitor {
        /**
         * Adds the description of some candidate.
         */
        DiagnosticsVisitor candidate(String displayName);
    
        /**
         * Adds an example for the previous candidate. Can have multiple examples.
         */
        DiagnosticsVisitor example(String example);
    
        /**
         * Adds a set of potential values for the previous candidate, if known.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | Adds a target representing the {cpp} application to the project file.
    
    | <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library>>
    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    
    | <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    | Adds a target representing the Swift application to the project file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_linux.go

    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv4Forward, Content: []byte{'1'}})
    	return checks
    }
    
    // addSwapCheck adds a swap check
    func addSwapCheck(checks []Checker) []Checker {
    	checks = append(checks, SwapCheck{})
    	return checks
    }
    
    // addExecChecks adds checks that verify if certain binaries are in PATH
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

        def "adds convention objects"() {
            when:
            project.pluginManager.apply(BasePlugin)
    
            then:
            project.convention.plugins.base instanceof BasePluginConvention
            project.extensions.findByType(DefaultArtifactPublicationSet) != null
            project.extensions.findByType(BasePluginExtension) != null
        }
    
        def "adds extension object"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

         * The script classpath configuration.
         */
        val NamedDomainObjectContainer<Configuration>.classpath: NamedDomainObjectProvider<Configuration>
            get() = named(CLASSPATH_CONFIGURATION)
    
        /**
         * Adds a dependency to the script classpath.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         *
         * @see [DependencyHandler.add]
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                     }
     *                 }
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface ComponentSelectionRules {
        /**
         * Adds a simple component selection rule that will apply to all resolved components.
         * Each rule will receive a {@link ComponentSelection} object as an argument.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

        /**
         * Adds tests to be executed by passing test descriptors received from a previous Gradle Run.
         *
         * @param descriptors The OperationDescriptor defining one or more tests.
         * @return this
         * @since 2.6
         */
        TestLauncher withTests(TestOperationDescriptor... descriptors);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top