Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 138 for Enumerations (0.22 sec)

  1. src/runtime/proc_runtime_test.go

    			checked := make([]bool, procs)
    			for p := 0; p < procs; p++ {
    				x := enum.position()
    				if checked[x] {
    					println("procs:", procs, "inc:", enum.inc)
    					panic("duplicate during enumeration")
    				}
    				checked[x] = true
    				enum.next()
    			}
    			if !enum.done() {
    				panic("not done")
    			}
    		}
    	}
    	// Make sure that different arguments to ord.start don't generate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

     */
    package jcifs.pac.kerberos;
    
    
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.math.BigInteger;
    import java.security.GeneralSecurityException;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.security.auth.kerberos.KerberosKey;
    import javax.security.auth.login.LoginException;
    
    import org.bouncycastle.asn1.*;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java

     */
    package jcifs.pac.kerberos;
    
    
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Enumeration;
    import java.util.List;
    import java.util.Map;
    
    import javax.security.auth.kerberos.KerberosKey;
    
    import org.bouncycastle.asn1.*;
    
    import jcifs.pac.ASN1Util;
    import jcifs.pac.PACDecodingException;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

        public void engineDeleteEntry(String alias) throws KeyStoreException {
            keys.remove(alias);
            certChains.remove(alias);
        }
    
        @Override
        public Enumeration<String> engineAliases() {
            return Collections.enumeration(keys.keySet());
        }
    
        @Override
        public boolean engineContainsAlias(String alias) {
            return keys.containsKey(alias) || certChains.containsKey(alias);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jConfigurationFactory.java

     * under the License.
     */
    package org.apache.maven.cli.logging;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.Enumeration;
    import java.util.Properties;
    
    import org.apache.maven.cli.logging.impl.UnsupportedSlf4jBindingConfiguration;
    import org.slf4j.ILoggerFactory;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

    import java.security.InvalidAlgorithmParameterException;
    import java.security.InvalidKeyException;
    import java.security.Key;
    import java.security.NoSuchAlgorithmException;
    import java.util.ArrayList;
    import java.util.Enumeration;
    import java.util.List;
    import java.util.Map;
    
    import javax.crypto.BadPaddingException;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.Mac;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/JarFilePackageLister.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.detection;
    
    import org.gradle.api.GradleException;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipFile;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    public class JarFilePackageLister {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyInjectingServiceLoaderTest.groovy

    import org.gradle.internal.service.ServiceRegistry
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import javax.inject.Inject
    
    import static java.util.Collections.enumeration
    
    class DependencyInjectingServiceLoaderTest extends Specification {
    
        def "will load service implementation and inject dependencies"() {
            given:
            def implClassName = ServiceTypeImpl.class.name
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 28 20:18:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/GradleApiSpecAggregatorTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.initialization
    
    import org.gradle.internal.reflect.DirectInstantiator
    import spock.lang.Specification
    
    import static java.util.Collections.enumeration
    
    class GradleApiSpecAggregatorTest extends Specification {
    
        def "will aggregate specs from all reachable GradleApiSpecProviders"() {
            given:
            def classLoader = Mock(ClassLoader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_path_params/test_tutorial005.py

                "detail": [
                    {
                        "ctx": {"enum_values": ["alexnet", "resnet", "lenet"]},
                        "loc": ["path", "model_name"],
                        "msg": "value is not a valid enumeration member; permitted: 'alexnet', 'resnet', 'lenet'",
                        "type": "type_error.enum",
                    }
                ]
            }
        )
    
    
    def test_openapi_schema():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top