Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 474 for convenient (0.17 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

         * </pre>
         */
        public void setRuleSets(List<String> ruleSets) {
            this.ruleSets.set(ruleSets);
        }
    
        /**
         * Convenience method for adding rule sets.
         *
         * <pre>
         *     ruleSets "category/java/errorprone.xml", "category/java/bestpractices.xml"
         * </pre>
         *
         * @param ruleSets the rule sets to be added
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

    public interface ProjectConnection extends Closeable {
        /**
         * Fetches a snapshot of the model of the given type for this project. This method blocks until the model is available.
         *
         * <p>This method is simply a convenience for calling {@code model(modelType).get()}</p>
         *
         * @param modelType The model type.
         * @param <T> The model type.
         * @return The model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/all.go

    )
    
    // All returns all analyzers
    func All() []analysis.Analyzer {
    	analyzers := []analysis.Analyzer{
    		// Please keep this list sorted alphabetically by pkg.name for convenience
    		&annotations.K8sAnalyzer{},
    		&authz.AuthorizationPoliciesAnalyzer{},
    		&deployment.ServiceAssociationAnalyzer{},
    		&deployment.ApplicationUIDAnalyzer{},
    		&deprecation.FieldAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/capabilities/capabilities.go

    	Initialize(Capabilities{
    		AllowPrivileged:                        allowPrivileged,
    		PerConnectionBandwidthLimitBytesPerSec: perConnectionBytesPerSec,
    	})
    }
    
    // SetForTests sets capabilities for tests.  Convenience method for testing.  This should only be called from tests.
    func SetForTests(c Capabilities) {
    	capInstance.lock.Lock()
    	defer capInstance.lock.Unlock()
    	capInstance.capabilities = &c
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 12:51:16 UTC 2019
    - 3K bytes
    - Viewed (0)
  5. pkg/kube/krt/helpers.go

    	// Allow flattening
    	ao, ok := any(&a).(controllers.Object)
    	if ok {
    		k, _ := cache.MetaNamespaceKeyFunc(ao)
    		return Key[O](k)
    	}
    	panic(fmt.Sprintf("Cannot get Key, got %T", a))
    }
    
    // Named is a convenience struct. It is ideal to be embedded into a type that has a name and namespace,
    // and will automatically implement the various interfaces to return the name, namespace, and a key based on these two.
    type Named struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitution.java

         *
         * @since 4.5
         */
        void useTarget(Object notation, String reason);
    
        /**
         * Configures the artifact selection for the substitution.
         * This is a convenience method which allows selecting, typically, different artifact classifiers
         * for the same component.
         *
         * Artifact selection matters for components which are not published with Gradle Module Metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // so the implementation should preferably be constant-time.
    typedef llvm::function_ref<llvm::SmallVector<Operation *, 4> const &(
        Operation *, bool incoming)>
        ExtraDependenciesFunction;
    
    // Convenience function if there are no extra dependencies to declare.
    // (Unlike nullptr, this also works inside the ternary operator)
    extern ExtraDependenciesFunction no_extra_dependencies;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. pkg/kubelet/lifecycle/interfaces.go

    type PodSyncTarget interface {
    	// AddPodSyncHandler adds the specified handler
    	AddPodSyncHandler(a PodSyncHandler)
    }
    
    // PodLifecycleTarget groups a set of lifecycle interfaces for convenience.
    type PodLifecycleTarget interface {
    	PodAdmitTarget
    	PodSyncLoopTarget
    	PodSyncTarget
    }
    
    // PodAdmitHandlers maintains a list of handlers to pod admission.
    type PodAdmitHandlers []PodAdmitHandler
    
    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/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *              runs using the basic interface.
     */
    
    CU_EXPORT void CU_basic_show_failures(CU_pFailureRecord pFailure);
    /**<
     *  Prints a summary of run failures to stdout.
     *  This is provided for user convenience upon request, and does 
     *  not take into account the current run mode.  The failures are 
     *  printed to stdout independent of the most recent run mode.
     *
     *  @param pFailure List of CU_pFailureRecord's to output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Verify.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static convenience methods that serve the same purpose as Java language <a
     * href="https://docs.oracle.com/javase/8/docs/technotes/guides/language/assert.html">assertions</a>,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
Back to top