Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,227 for para2 (0.04 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComWrite.java

        private byte[] b;
    
    
        /**
         * 
         * @param config
         */
        public SmbComWrite ( Configuration config ) {
            super(config, SMB_COM_WRITE);
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param remaining
         * @param b
         * @param off
         * @param len
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         *
         * @param plugin The plugin whose mojo descriptor should be retrieved, must not be {@code null}.
         * @param goal The simple name of the mojo whose descriptor should be retrieved, must not be {@code null}.
         * @param repositories The plugin repositories to use for resolving the plugin's main artifact, must not be {@code
         *            null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. tests/test_operations_signatures.py

            param: inspect.Parameter
            for key, param in base_sig.parameters.items():
                router_param: inspect.Parameter = router_sig.parameters[key]
                app_param: inspect.Parameter = app_sig.parameters[key]
                assert param.annotation == router_param.annotation
                assert param.annotation == app_param.annotation
                assert param.default == router_param.default
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 12:08:13 UTC 2019
    - 934 bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

        }
    
        /**
         * Prompts the user for a string using a list of possible values and a default reply.
         *
         * @param message the message to display
         * @param possibleValues the list of possible values
         * @param defaultReply the default reply value
         * @return the string entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

        /**
         * Adds a dependency to the given configuration, and configures the dependency using the given closure.
         *
         * @param configurationName The name of the configuration.
         * @param dependencyNotation The dependency notation, in one of the notations described above.
         * @param configureClosure The closure to use to configure the dependency.
         * @return The dependency, or null if dependencyNotation is a provider.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

            return parameters;
        }
    
        private static void decomposeParameterIntoUserInstructions(
                MojoDescriptor mojo, Parameter param, StringBuilder messageBuffer) {
            String expression = param.getExpression();
    
            if (param.isEditable()) {
                boolean isArray = param.getType().endsWith("[]");
                boolean isCollection = false;
                boolean isMap = false;
                boolean isProperties = false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 09 23:46:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/DirectInstantiatorTest.groovy

            CharSequence param = Mock()
    
            expect:
            def result = instantiator.newInstance(SomeType, param)
            result instanceof SomeType
            result.result == param
        }
    
        def "creates instance with subtypes of constructor parameters"() {
            expect:
            def result = instantiator.newInstance(SomeType, "param")
            result instanceof SomeType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. test/escape_calls.go

    	f := prototype
    	f = func(ss []string) { got = append(got, ss) } // ERROR "leaking param: ss" "func literal does not escape"
    	s := "string"
    	f([]string{s}) // ERROR "\[\]string{...} escapes to heap"
    }
    
    func strmin(a, b, c string) string { // ERROR "leaking param: a to result ~r0 level=0" "leaking param: b to result ~r0 level=0" "leaking param: c to result ~r0 level=0"
    	return min(a, b, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 22:06:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    	gvk   schema.GroupVersionKind
    	param VerifiableQueryParam
    }
    
    func NewParamUnsupportedError(gvk schema.GroupVersionKind, param VerifiableQueryParam) error {
    	return &paramUnsupportedError{
    		gvk:   gvk,
    		param: param,
    	}
    }
    
    func (e *paramUnsupportedError) Error() string {
    	return fmt.Sprintf("%v doesn't support %s", e.gvk, e.param)
    }
    
    func IsParamUnsupportedError(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

         *
         * @param configurationName The name of the configuration.
         * @param dependencyNotation The dependency constraint notation
         * @param configureAction The closure to use to configure the dependency constraint.
         */
        DependencyConstraint add(String configurationName, Object dependencyNotation, Action<? super DependencyConstraint> configureAction);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top