Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for decomposition (0.07 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

    import org.apache.maven.project.artifact.DefaultMetadataSource;
    import org.apache.maven.repository.legacy.LegacyRepositorySystem;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.component.composition.CycleDetectedInComponentGraphException;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.internal.impl.DefaultChecksumPolicyProvider;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.codehaus.plexus.DefaultPlexusContainer;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.codehaus.plexus.component.composition.CycleDetectedInComponentGraphException;
    import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
    import org.codehaus.plexus.component.configurator.ComponentConfigurator;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.zip

    internal error: unsupported denγ2") } γ2 := (q - 1) / uint32(p.γ2) r0 := CenteredMod(r, 2*γ2) diff := int32(r) - r0 if diff == q-1 { r0 = r0 - 1 return 0, r0 } else { if diff < 0 || uint32(diff)%γ2 != 0 { panic("mldsa: internal error: invalid decomposition") } r1 := uint32(diff) / (2 * γ2) return r1, r0 } } func TestDecompose(t *testing.T) { t.Run("ML-DSA-44", func(t *testing.T) { testDecompose(t, params44) }) t.Run("ML-DSA-65,87", func(t *testing.T) { testDecompose(t, params65) }) } func testDecompose(t...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  4. doc/go_spec.html

    type Mutex struct         { /* Mutex fields */ }
    func (m *Mutex) Lock()    { /* Lock implementation */ }
    func (m *Mutex) Unlock()  { /* Unlock implementation */ }
    
    // NewMutex has the same composition as Mutex but its method set is empty.
    type NewMutex Mutex
    
    // The method set of PtrMutex's underlying type *Mutex remains unchanged,
    // but the method set of PtrMutex is empty.
    type PtrMutex *Mutex
    
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 02 23:07:19 UTC 2025
    - 286.5K bytes
    - Viewed (1)
Back to top