Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 358 for shortly (0.11 sec)

  1. src/test/java/jcifs/tests/KerberosTest.java

            try ( SmbResource f = new SmbFile(getTestShareURL(), ctx) ) {
                f.exists();
            }
            catch ( SmbUnsupportedOperationException e ) {
                Assume.assumeTrue("Using short names", false);
            }
        }
    
    
        @Test
        public void testJAAS () throws CIFSException, MalformedURLException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
        public abstract val byte: KaType
    
        @Deprecated("Use 'byte' instead.", replaceWith = ReplaceWith("byte"))
        public val BYTE: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/config.go

    )
    
    // newCmdConfig returns cobra.Command for "kubeadm config" command
    func newCmdConfig(out io.Writer) *cobra.Command {
    	var kubeConfigFile string
    
    	cmd := &cobra.Command{
    		Use:   "config",
    		Short: "Manage configuration for a kubeadm cluster persisted in a ConfigMap in the cluster",
    		Long: fmt.Sprintf(dedent.Dedent(`
    			There is a ConfigMap in the %s namespace called %q that kubeadm uses to store internal configuration about the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Comparators.java

       * Returns a new comparator which sorts iterables by comparing corresponding elements pairwise
       * until a nonzero result is found; imposes "dictionary order." If the end of one iterable is
       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            impl.someThing(1, 4) == 5
            impl.dontReturn(1 as short, 4 as byte)
        }
    
        static interface TypeWithPrimitiveMethods {
            long someLong(long l)
            boolean someBoolean(boolean b)
            char someChar(char ch)
            int someThing(int a, int b)
            void dontReturn(short s, byte b)
        }
    
        static class ClassWithPrimitiveMethods {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

        private Date logonTime;
        private Date logoffTime;
        private Date kickOffTime;
        private Date pwdLastChangeTime;
        private Date pwdCanChangeTime;
        private Date pwdMustChangeTime;
        private short logonCount;
        private short badPasswordCount;
        private String userName;
        private String userDisplayName;
        private String logonScript;
        private String profilePath;
        private String homeDirectory;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertEquals(Byte.valueOf((byte) 0), ArbitraryInstances.get(Byte.class));
        assertEquals(Short.valueOf((short) 0), ArbitraryInstances.get(short.class));
        assertEquals(Short.valueOf((short) 0), ArbitraryInstances.get(Short.class));
        assertEquals(Integer.valueOf(0), ArbitraryInstances.get(int.class));
        assertEquals(Integer.valueOf(0), ArbitraryInstances.get(Integer.class));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    			line += p.use                               // name + aliases
    			line += strings.Repeat(" ", padding)        // padding right up to max length (+ offset for spacing)
    			line += p.Short                             // phase short description
    			line += "\n"
    		}
    
    		return nil
    	})
    	line += "```"
    	return line
    }
    
    // SetAdditionalFlags allows to define flags to be added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            then:
            !componentSelection.rejected
            // rules are called in order
            closureCalled == 0..7
        }
    
        // Short circuiting tests will need to be removed once the extra param feature is removed
        def "short-circuit prefers non-metadata rules over rules requiring metadata"() {
            def metadataProvider = Mock(MetadataProvider)
            def closuresCalled = []
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

                }
                if (value instanceof Long) {
                    return visitor.longValue((Long) value);
                }
                if (value instanceof Short) {
                    return visitor.shortValue((Short) value);
                }
            }
            if (value instanceof Set) {
                return processSet((Set<?>) value, visitor);
            }
            if (value instanceof Map) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top