Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,345 for auds (0.12 sec)

  1. cmd/kubeadm/app/preflight/checks_other.go

    )
    
    // addOSValidator adds a new OSValidator
    // No-op for Darwin (MacOS), Windows.
    func addOSValidator(validators []system.Validator, _ *system.StreamReporter) []system.Validator {
    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv6Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 23 07:37:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	n := 0
    	_, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    		if a.Type() == goobj.AuxPcdata {
    			n++
    		}
    	}
    	return n
    }
    
    // Returns all funcdata symbols of symbol i.
    // tmp is a scratch space.
    func (l *Loader) Funcdata(i Sym, tmp []Sym) []Sym {
    	fd := tmp[:0]
    	r, auxs := l.auxs(i)
    	for j := range auxs {
    		a := &auxs[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningPlugin.java

    import org.gradle.api.plugins.BasePlugin;
    
    /**
     * Adds the ability to digitally sign files and artifacts.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/signing_plugin.html">Signing plugin reference</a>
     */
    public abstract class SigningPlugin implements Plugin<Project> {
    
        /**
         * <p>Adds the ability to digitally sign files and artifacts.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/runtime/memclr_arm64.s

    	NEG	R0, R4
    	ANDS	$15, R4, R4
    	// Try zeroing using zva if the start address is aligned with 16
    	BEQ	try_zva
    
    	// Non-aligned store
    	STP	(ZR, ZR), (R0)
    	// Make the destination aligned
    	SUB	R4, R1, R1
    	ADD	R4, R0, R0
    	B	try_zva
    
    tail_maybe_long:
    	CMP	$64, R1
    	BHS	no_zva
    
    tail63:
    	ANDS	$48, R1, R3
    	BEQ	last16
    	CMPW	$32, R3
    	BEQ	last48
    	BLT	last32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

    @Incubating
    public interface TestSpec {
    
        /**
         * Adds all tests declared in the target package to the test execution.
         * <p>
         * The effect is recursive, meaning that the tests defined in sub-packages will also be executed.
         *
         * @param pkg The target package.
         * @return this
         */
        TestSpec includePackage(String pkg);
    
        /**
         * Adds all tests declared in the target packages to the test execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

     */
    @HasInternalProtocol
    public interface ComponentMetadataHandler {
        /**
         * Adds a rule action that may modify the metadata of any resolved software component.
         *
         * @param rule the rule to be added
         * @return this
         */
        ComponentMetadataHandler all(Action<? super ComponentMetadataDetails> rule);
    
        /**
         * Adds a rule closure that may modify the metadata of any resolved software component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top