Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for getTax (0.21 sec)

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

                Assert.assertEquals(1, ed.getUserAuthorizations().size());
    
                KerberosPacAuthData pacData = (KerberosPacAuthData) ed.getUserAuthorizations().get(0);
                Pac pac = pacData.getPac();
                PacLogonInfo li = pac.getLogonInfo();
                Assert.assertEquals("test1", li.getUserName());
            } finally {
                Files.deleteIfExists(p);
                Files.deleteIfExists(krbConfig);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

             * starting at the root object contained in this value source, apply each part
             * to the object graph below this root, using either 'getXXX()' or 'isXXX()'
             * accessor types to resolve the value for each successive expression part.
             * Finally, return the result of the last expression part's resolution.</p>
             *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_test.go

    			return xl.versions[i].header.ModTime > xl.versions[j].header.ModTime
    		}) {
    			t.Errorf("Contents not sorted")
    		}
    		for i := range xl.versions {
    			hdr := xl.versions[i].header
    			ver, err := xl.getIdx(i)
    			if err != nil {
    				t.Error(err)
    				continue
    			}
    			gotHdr := ver.header()
    			if hdr != gotHdr {
    				t.Errorf("Header does not match, index: %+v != meta: %+v", hdr, gotHdr)
    			}
    		}
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    lexus.PlexusContainer, String); public void clear(); public Object put(Object, Object); public void putAll(java.util.Map); public Object remove(Object); protected final org.codehaus.plexus.logging.Logger getLogger(); protected final java.util.Map getMap(); protected final java.util.Map checkedGetMap() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public final String getRole(); protected final void setRole(String); public final void contextualize(org.codehaus.ple...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 15.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    lexus.PlexusContainer, String); public void clear(); public Object put(Object, Object); public void putAll(java.util.Map); public Object remove(Object); protected final org.codehaus.plexus.logging.Logger getLogger(); protected final java.util.Map getMap(); protected final java.util.Map checkedGetMap() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public final String getRole(); protected final void setRole(String); public final void contextualize(org.codehaus.ple...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 15.6K bytes
    - Viewed (0)
  6. internal/logger/target/http/http.go

    	}
    
    	return h, nil
    }
    
    // SendFromStore - reads the log from store and sends it to webhook.
    func (h *Target) SendFromStore(key store.Key) (err error) {
    	var eventData []byte
    	eventData, err = h.store.GetRaw(key.Name)
    	if err != nil {
    		if os.IsNotExist(err) {
    			return nil
    		}
    		return err
    	}
    
    	if err := h.send(context.Background(), eventData, h.payloadType, webhookCallTimeout); err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 25 16:44:20 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

          Yellow(Red<B> red) {
            red.super();
          }
    
          Class<?> getClassB() {
            return new TypeToken<B>(getClass()) {}.getRawType();
          }
    
          Red<A> getA() {
            return getSelfA();
          }
    
          Red<B> getB() {
            return getSelfB();
          }
        }
    
        Class<?> getClassDirect() {
          return new TypeToken<A>(getClass()) {}.getRawType();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  8. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchainManager#logger</exclude>
                  <!-- Remove plexus utils -->
                  <exclude>org.apache.maven.project.ProjectSorter#getDAG():METHOD_REMOVED</exclude>
                  <!-- classes moved to maven-compat -->
                  <exclude>org.apache.maven.plugin.PluginManager</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/math/StatsTest.java

          assertEquivalent(stats.mean(), streamStats.getAverage());
          assertEquivalent(stats.sum(), streamStats.getSum());
          assertEquivalent(stats.max(), streamStats.getMax());
          assertEquivalent(stats.min(), streamStats.getMin());
        }
      }
    
      private static void assertEquivalent(double actual, double expected) {
        if (expected == POSITIVE_INFINITY) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 32.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

     * their lifecycle is shared as well: once supplied repository system is shut-down, this instance becomes closed as
     * well. Any subsequent {@code getXXX} method invocation attempt will fail with {@link IllegalStateException}.
     */
    public class RepositorySystemSupplier implements Supplier<RepositorySystem> {
        private final AtomicBoolean closed = new AtomicBoolean(false);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 43.7K bytes
    - Viewed (0)
Back to top