Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,345 for auds (0.15 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

        protected ClassVisitorScope(ClassVisitor cv) {
            super(ASM_LEVEL, cv);
        }
    
        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Class<?> type) {
            addField(access, fieldName, getDescriptor(type));
        }
    
        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Type type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/generic.go

    	fs.Lookup(KubeconfigPath).DefValue = constants.GetAdminKubeConfigPath()
    }
    
    // AddKubeConfigDirFlag adds the --kubeconfig-dir flag to the given flagset
    func AddKubeConfigDirFlag(fs *pflag.FlagSet, kubeConfigDir *string) {
    	fs.StringVar(kubeConfigDir, KubeconfigDir, *kubeConfigDir, "The path where to save the kubeconfig file.")
    }
    
    // AddConfigFlag adds the --config flag to the given flagset
    func AddConfigFlag(fs *pflag.FlagSet, cfgPath *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerScope.kt

        }
    
        /**
         * Adds a dependency to the given configuration.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         * @see [DependencyHandler.add]
         */
        operator fun String.invoke(dependencyNotation: Any): Dependency? =
            dependencies.add(this, dependencyNotation)
    
        /**
         * Adds a dependency to the given configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    
    
        /**
         * Adds a dependency to the 'api' configuration.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         *
         * @see [DependencyHandler.add]
         */
        fun DependencyHandler.`api`(dependencyNotation: Any): Dependency? =
            add("api", dependencyNotation)
    
    
        /**
         * Adds a dependency to the 'api' configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         */
        @Incubating
        GradleLifecycle getLifecycle();
    
        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

     */
    public interface LoggingOutputInternal extends LoggingOutput {
        /**
         * Adds System.out and System.err as logging destinations. The output will include plain text only, with no color or dynamic text.
         */
        void attachSystemOutAndErr();
    
        /**
         * Adds the current processes' stdout and stderr as logging destinations. The output will also include color and dynamic text when one of these
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ValidationProblemCollector.java

        boolean hasProblems();
    
        /**
         * Adds a problem with the type.
         */
        void add(String problem);
    
        /**
         * Adds a problem with a field.
         */
        void add(Field field, String problem);
    
        /**
         * Adds a problem with a method.
         */
        void add(Method method, String role, String problem);
    
        /**
         * Adds a problem with a constructor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/distribution/plugins/DistributionPluginTest.groovy

        }
    
        def "adds distZip task for main distribution"() {
            when:
            project.pluginManager.apply(DistributionPlugin)
    
            then:
            def task = project.tasks.distZip
            task instanceof Zip
            task.archiveFile.get().asFile == project.file("build/distributions/test-project.zip")
        }
    
        def "adds distZip task for custom distribution"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

                DependencyConstraintHandlerScope(constraints)
        }
    
        override val delegate: DependencyConstraintHandler
            get() = constraints
    
        /**
         * Adds a dependency constraint to the given configuration.
         *
         * @param dependencyConstraintNotation notation for the dependency constraint to be added.
         * @return The dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. 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)
Back to top