Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,155 for ADDS (0.04 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

        /**
         * Adds a method invocation statement to this block
         */
        void methodInvocation(@Nullable String comment, BuildScriptBuilder.Expression target, String methodName, Object... methodArgs);
    
        /**
         * Adds a statement to this block.
         */
        void statement(@Nullable String comment, BuildScriptBuilder.Statement statement);
    
        /**
         * Adds a block statement to this block.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/internal/nistec/p256_asm_arm64.s

    	MUL	x0, x1, acc1
    	UMULH	x0, x1, acc2
    
    	MUL	x0, x2, t0
    	ADDS	t0, acc2, acc2
    	UMULH	x0, x2, acc3
    
    	MUL	x0, x3, t0
    	ADCS	t0, acc3, acc3
    	UMULH	x0, x3, acc4
    	ADC	$0, acc4, acc4
    	// x[2:] * x[1]
    	MUL	x1, x2, t0
    	ADDS	t0, acc3
    	UMULH	x1, x2, t1
    	ADCS	t1, acc4
    	ADC	$0, ZR, acc5
    
    	MUL	x1, x3, t0
    	ADDS	t0, acc4
    	UMULH	x1, x3, t1
    	ADC	t1, acc5
    	// x[3] * x[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top