Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,240 for Supplied (0.17 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputReader.java

         * Called when the current process starts receiving user input from the client.
         */
        void startInput();
    
        void putInput(UserInput input);
    
        /**
         * Returns a {@link TextResponse} containing text supplied by the user, or {@link #END_OF_INPUT} if interrupted.
         */
        UserInput readInput();
    
        abstract class UserInput {
            abstract String getText();
        }
    
        UserInput END_OF_INPUT = new UserInput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    
    import java.util.Optional;
    
    /**
     * A child JVM that performs some worker action. You can send and receive messages to/from the worker action
     * using a supplied {@link ObjectConnection}.
     */
    public interface WorkerProcess extends Describable {
        WorkerProcess start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ParsedModuleStringNotation.java

                    count++;
                }
            }
            assignValue(count, moduleNotation.substring(idx, cur));
            count++;
            if (count < 2 || count > 4) {
                throw new IllegalDependencyNotation("Supplied String module notation '" + moduleNotation + "' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:javadoc'.");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginRegistry.java

         */
        @Nullable
        PluginImplementation<?> lookup(PluginId pluginId);
    
        PluginRegistry createChild(ClassLoaderScope lookupScope);
    
        /**
         * Finds the plugin id which corresponds to the supplied class name.
         * @param clazz the class to look for
         * @return the plugin id for this class.
         */
        Optional<PluginId> findPluginForClass(Class<?> clazz);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 25 08:50:30 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryTest.groovy

            repository.remoteAccess == remoteAccess
    
            and:
            1 * delegate.localAccess >> localAccess
            1 * delegate.remoteAccess >> remoteAccess
        }
    
        def "returns supplied local and remote access"() {
            when:
            final repository = new BaseModuleComponentRepository(delegate, localAccess, remoteAccess)
    
            then:
            repository.localAccess == localAccess
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioProject.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A visual studio project, created from one or more native binaries.
     *
     * <p>
     *
     * The content and location of the generate project file can be modified by the supplied methods:
     *
     * <pre class='autoTested'>
     *  plugins {
     *      id 'cpp'
     *      id 'visual-studio'
     *  }
     *
     *  model {
     *      visualStudio {
     *          projects.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

            {{provided}, {compile, test, provided}}
        };
    
        /**
         * scope relationship function. Used by the graph conflict resolution policies
         *
         * @param scope a scope
         * @return true is supplied scope is an inclusive sub-scope of current one.
         */
        public boolean encloses(ArtifactScopeEnum scope) {
            final ArtifactScopeEnum s = checkScope(scope);
    
            // system scope is historic only - and simple
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_util.c

    	guards).
    	free(NULL) has a fast-path special case in TSAN, so it doesn't
    	trigger signal delivery.
    	free(malloc(0)) would work (triggering the interceptors in malloc), but
    	it also runs a bunch of user-supplied malloc hooks.
    
    	So we choose strncpy(_, _, 0): it requires an extra header,
    	but it's standard and should be very efficient.
    
    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * client workstation has membership is supplied in the Type-1 message.
         * This is used in the negotation of local authentication.
         */
        public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000;
    
        /**
         * Indicates whether the OEM-formatted workstation name is supplied
         * in the Type-1 message. This is used in the negotiation of local
         * authentication.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  10. tensorflow/cc/tools/freeze_saved_model.h

    // SignatureDefs in the SavedModelBundle.
    // FreezeSavedModel sets `frozen_graph_def` to a GraphDef of all nodes needed by
    // `outputs`. All variables in the supplied SavedModelBundle are converted to
    // constants, set to the value of the variables, by running the restored Session
    // in the SavedModelBundle.
    // WARNING: Only the variable checkpoints will be reflected in the frozen
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top