Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 360 for promv1 (0.27 sec)

  1. src/main/java/jcifs/smb/NtlmAuthenticator.java

         * @param sae
         * @return credentials returned by prompt
         */
        public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication ( String url, SmbAuthException sae ) {
            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
    
        /**
         * @param a
         * @param url
         * @param sae
         * @return credentials returned by prompt
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ContextConfigTest.java

    
        @Test
        // #226
        public void testLegacyConfig () throws CIFSException {
            Properties prop1 = new Properties();
            prop1.setProperty("jcifs.smb.client.enableSMB2", "false");
            prop1.setProperty("jcifs.smb.client.disableSMB1", "false");
            PropertyConfiguration p1 = new PropertyConfiguration(prop1);
    
            assertEquals(DialectVersion.SMB1, p1.getMinimumVersion());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_svn.txt

    [short] skip
    [!exec:svn] skip
    
    # 'go mod download' will fall back to svn+ssh once svn fails over protocols like https.
    # If vcs-test.golang.org isn't in the user's known_hosts file, this will result
    # in an ssh prompt, which will stop 'go test' entirely
    #
    # Unfortunately, there isn't a way to globally disable host checking for ssh,
    # without modifying the real system's or user's configs. Changing $HOME won't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/YesNoQuestionPromptEventTest.groovy

    package org.gradle.internal.logging.events
    
    import spock.lang.Specification
    
    class YesNoQuestionPromptEventTest extends Specification {
        def "formats prompt"() {
            def event = new YesNoQuestionPromptEvent(123, "question?")
    
            expect:
            event.prompt == "question? [yes, no] " // trailing space
        }
    
        def "accepts valid input"() {
            def event = new YesNoQuestionPromptEvent(123, "question?")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/BooleanQuestionPromptEventTest.groovy

    package org.gradle.internal.logging.events
    
    import spock.lang.Specification
    
    class BooleanQuestionPromptEventTest extends Specification {
        def "formats prompt"() {
            def event = new BooleanQuestionPromptEvent(123, "question?", true)
    
            expect:
            event.prompt == "question? (default: yes) [yes, no] " // trailing space
        }
    
        def "accepts valid input"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultUserInputReceiver.java

        private OutputEventListener console;
    
        /**
         * This instance requires access to the "console" pipeline in order to prompt the user when there are validation problems.
         * However, the console pipeline also needs access to this instance in order to handle user input prompt requests.
         * Break this cycle for now using a non-final field.
         */
        public void attachConsole(OutputEventListener console) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tools/certs/common.mk

    # clean
    .PHONY: clean
    
    clean: ## Cleans all the intermediate files and folders previously generated.
    	@rm -f $(FILES_TO_CLEAN)
    
    root-ca.conf:
    	@echo "[ req ]" > $@
    	@echo "encrypt_key = no" >> $@
    	@echo "prompt = no" >> $@
    	@echo "utf8 = yes" >> $@
    	@echo "default_md = sha256" >> $@
    	@echo "default_bits = $(ROOTCA_KEYSZ)" >> $@
    	@echo "req_extensions = req_ext" >> $@
    	@echo "x509_extensions = req_ext" >> $@
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/pprof/readlineui.go

    	}{os.Stdin, os.Stderr}
    	return &readlineUI{term: term.NewTerminal(rw, "")}
    }
    
    // ReadLine returns a line of text (a command) read from the user.
    // prompt is printed before reading the command.
    func (r *readlineUI) ReadLine(prompt string) (string, error) {
    	r.term.SetPrompt(prompt)
    
    	// skip error checking because we tested it
    	// when creating this readlineUI initially.
    	oldState, _ := term.MakeRaw(0)
    	defer term.Restore(0, oldState)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>false</activeByDefault>
                </activation>
                <properties>
                    <prop1>myproperty1</prop1>
                </properties>
                <dependencyManagement>
                    <dependencies>
                        <dependency>
                            <groupId>group-two</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/IntQuestionPromptEventTest.groovy

     */
    
    package org.gradle.internal.logging.events
    
    import spock.lang.Specification
    
    class IntQuestionPromptEventTest extends Specification {
        def "formats prompt"() {
            def event = new IntQuestionPromptEvent(123, "question?", 2, 4)
            assert event.prompt == "enter value (min: 2, default: 4): "
        }
    
        def "accepts valid input"() {
            def event = new IntQuestionPromptEvent(123, "question?", 2, 4)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top