Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for newInt (0.14 sec)

  1. src/crypto/x509/x509_test.go

    	revokedCerts := []pkix.RevokedCertificate{
    		{
    			SerialNumber:   big.NewInt(1),
    			RevocationTime: nowUTC,
    		},
    		{
    			SerialNumber: big.NewInt(42),
    			// RevocationTime should be converted to UTC before marshaling.
    			RevocationTime: now,
    		},
    	}
    	expectedCerts := []pkix.RevokedCertificate{
    		{
    			SerialNumber:   big.NewInt(1),
    			RevocationTime: nowUTC,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
    	serialNumber, _ := rand.Int(rand.Reader, serialNumberLimit)
    
    	template := &Certificate{
    		SerialNumber: serialNumber,
    		Subject:      pkix.Name{CommonName: cn},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// the clock will be set 10s after the newest pod on node-1 went ready, which is not long enough to be available
    	manager.DaemonSetsController.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(50+10, 0))
    
    	// will be preserved because it has the newest hash
    	pod := newPod("node-1-", "node-1", simpleDaemonSetLabel, ds)
    	pod.CreationTimestamp.Time = time.Unix(100, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

         * newest entry exceeds the maximum weight all on its own.
         *
         * @param newest the most recently added entry
         */
        @GuardedBy("this")
        void evictEntries(ReferenceEntry<K, V> newest) {
          if (!map.evictsBySize()) {
            return;
          }
    
          drainRecencyQueue();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

         * newest entry exceeds the maximum weight all on its own.
         *
         * @param newest the most recently added entry
         */
        @GuardedBy("this")
        void evictEntries(ReferenceEntry<K, V> newest) {
          if (!map.evictsBySize()) {
            return;
          }
    
          drainRecencyQueue();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(request.header("d")).isEqualTo("f")
        val requestHeaders = request.headers
        assertThat(LinkedHashSet(requestHeaders.values("D"))).isEqualTo(newSet("e", "f"))
        assertThat(LinkedHashSet(requestHeaders.values("d"))).isEqualTo(newSet("e", "f"))
        val response = getResponse(request)
        response.close()
        val recordedRequest = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    				if gotErr == nil || item.expectError.Error() != gotErr.Error() {
    					t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectError, gotErr)
    				}
    			} else if gotErr != nil {
    				t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectError, gotErr)
    			}
    			if !cmp.Equal(item.expectPodBind, gotBind) {
    				t.Errorf("err \nWANT=%+v,\nGOT=%+v", item.expectPodBind, gotBind)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "collisionCount": {
              "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.",
              "format": "int32",
              "type": "integer"
            },
            "conditions": {
              "description": "Represents the latest available observations of a deployment's current state.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    	// connections in Stmt.css.
    	numClosed atomic.Uint64
    
    	mu           sync.Mutex    // protects following fields
    	freeConn     []*driverConn // free connections ordered by returnedAt oldest to newest
    	connRequests connRequestSet
    	numOpen      int // number of opened and pending open connections
    	// Used to signal the need for new connections
    	// a goroutine running connectionOpener() reads on this chan and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    					Timeout: time.Millisecond * 100,
    					Count:   1,
    					Check:   c.checker,
    				},
    			})
    		}
    	}
    }
    
    func jwtClaimRoute(t TrafficContext) {
    	if t.Settings().Selector.Excludes(label.NewSet(label.IPv4)) {
    		t.Skipf("https://github.com/istio/istio/issues/35835")
    	}
    	configRoute := `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top