Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for 4000 (0.14 sec)

  1. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  4. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 164.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    			true,
    		},
    		{
    			false,
    			"::ffff:169.254.0.0", // IPv6 mapped IPv4
    			true,
    		},
    		{
    			false,
    			"1000::",
    			false,
    		},
    		// IPv6
    		{
    			true,
    			"::1",
    			false,
    		},
    		{
    			true,
    			"1000::",
    			true,
    		},
    		{
    			true,
    			"fe80::200:ff:fe01:1",
    			false,
    		},
    		{
    			true,
    			"8.8.8.8",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    lass package org.codehaus.plexus.util.xml.pull; public synchronized class MXParser implements XmlPullParser { protected static final String XML_URI = http://www.w3.org/XML/1998/namespace; protected static final String XMLNS_URI = http://www.w3.org/2000/xmlns/; protected static final String FEATURE_XML_ROUNDTRIP = http://xmlpull.org/v1/doc/features.html#xml-roundtrip; protected static final String FEATURE_NAMES_INTERNED = http://xmlpull.org/v1/doc/features.html#names-interned; protected static final...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    		b, x := f(1000, 99)
    		if b != 99 || x != 1000+inc {
    			t.Errorf("%s(1000, 99) = %v, %v, want 99, %v", name, b, x, 1000+inc)
    		}
    	}
    
    	CheckV := func(name string, i Value, inc int) {
    		bx := i.Method(0).Call([]Value{ValueOf(1000), ValueOf(byte(99))})
    		b := bx[0].Interface()
    		x := bx[1].Interface()
    		if b != byte(99) || x != 1000+inc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    			desiredReplicas:             0,
    			expectedMinParallelRequests: 10,
    		},
    		{
    			desc:                        "scale up from 0",
    			replicas:                    0,
    			desiredReplicas:             1000,
    			expectedMinParallelRequests: 20,
    		},
    	} {
    		t.Run(tc.desc, func(t *testing.T) {
    			set := burst(newStatefulSet(0))
    			set.Spec.VolumeClaimTemplates[0].ObjectMeta.Labels = map[string]string{"test": "test"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /* jcifs smb client library in Java
     * Copyright (C) 2000  "Michael B. Allen" <jcifs at samba dot org>
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    			name: "1000nodes/single-constraint-node",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, v1.LabelHostname, v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			existingPodsNum:  10000,
    			allNodesNum:      1000,
    			filteredNodesNum: 500,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top