Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for userInput (0.21 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

    import org.gradle.StartParameter;
    import org.gradle.api.Action;
    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.configuration.GradleLauncherMetaData;
    import org.gradle.initialization.layout.BuildLayoutFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.buildinit.tasks
    
    import org.gradle.api.GradleException
    import org.gradle.api.internal.tasks.userinput.UserQuestions
    import org.gradle.buildinit.InsecureProtocolOption
    import org.gradle.buildinit.plugins.internal.BuildConverter
    import org.gradle.buildinit.plugins.internal.BuildGenerator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.userinput
    
    import org.gradle.api.tasks.TasksWithInputsAndOutputs
    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import org.gradle.util.internal.TextUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

    import com.google.common.collect.ImmutableMap;
    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.api.logging.LogLevel;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.configuration.GradleLauncherMetaData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer_test.go

    		return
    	}
    }
    
    // testWriterEOF tests if the written block contains an EOF marker.
    func testWriterEOF(t *testing.T, ttype string, test huffTest, useInput bool) {
    	if useInput && test.input == "" {
    		return
    	}
    	var input []byte
    	if useInput {
    		var err error
    		input, err = os.ReadFile(test.input)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    	}
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 40.3K bytes
    - Viewed (0)
Back to top