Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for Refresh (0.14 sec)

  1. pkg/controller/daemon/daemon_controller.go

    		fresh, err := dsc.kubeClient.AppsV1().DaemonSets(ds.Namespace).Get(ctx, ds.Name, metav1.GetOptions{})
    		if err != nil {
    			return nil, err
    		}
    		if fresh.UID != ds.UID {
    			return nil, fmt.Errorf("original DaemonSet %v/%v is gone: got uid %v, wanted %v", ds.Namespace, ds.Name, fresh.UID, ds.UID)
    		}
    		return fresh, nil
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator_test.go

    			expectReadyPodCount: 0,
    			expectUnreadyPods:   sets.NewString("lucretius"),
    			expectMissingPods:   sets.NewString(),
    			expectIgnoredPods:   sets.NewString(),
    		}, {
    			name: "count in a ready pod with fresh metrics during initialization period - CPU",
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "bentham",
    					},
    					Status: v1.PodStatus{
    						Phase: v1.PodSucceeded,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

          segmentSize <<= 1;
        }
    
        for (int i = 0; i < this.segments.length; ++i) {
          this.segments[i] = createSegment(segmentSize);
        }
      }
    
      /** Returns a fresh {@link MapMakerInternalMap} as specified by the given {@code builder}. */
      static <K, V> MapMakerInternalMap<K, V, ? extends InternalEntry<K, V, ?>, ?> create(
          MapMaker builder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	}
    
    	// An old session ticket is replaced with a ticket encrypted with a fresh key.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*time.Hour + time.Minute) }
    	testResumeState("ResumeWithOldTicket", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("old first ticket matches the fresh one")
    	}
    
    	// Once the session master secret is expired, a full handshake should occur.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		fresh, err := jm.kubeClient.BatchV1().Jobs(j.Namespace).Get(ctx, j.Name, metav1.GetOptions{})
    		if err != nil {
    			return nil, err
    		}
    		if fresh.UID != j.UID {
    			return nil, fmt.Errorf("original Job %v/%v is gone: got uid %v, wanted %v", j.Namespace, j.Name, fresh.UID, j.UID)
    		}
    		return fresh, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // Stalling the socket will cause TWO requests to time out!
        server.enqueue(MockResponse(socketPolicy = StallSocketAtStart))
    
        // The 3rd request should be sent to a fresh connection.
        server.enqueue(
          MockResponse(body = "fresh connection"),
        )
    
        // The first call times out.
        val call1 = client.newCall(Request(server.url("/")))
        assertFailsWith<IOException> {
          call1.execute()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      // Import it in a fresh graph.
      TF_DeleteGraph(graph);
      graph = TF_NewGraph();
      TF_ImportGraphDefOptions* opts = TF_NewImportGraphDefOptions();
      TF_GraphImportGraphDef(graph, graph_def, opts, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_Operation* scalar = TF_GraphOperationByName(graph, "scalar");
    
      // Import it in a fresh graph with an unused input mapping.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          segmentSize <<= 1;
        }
    
        for (int i = 0; i < this.segments.length; ++i) {
          this.segments[i] = createSegment(segmentSize);
        }
      }
    
      /** Returns a fresh {@link MapMakerInternalMap} as specified by the given {@code builder}. */
      static <K, V> MapMakerInternalMap<K, V, ? extends InternalEntry<K, V, ?>, ?> create(
          MapMaker builder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			return c.storage.Get(ctx, key, opts, objPtr)
    		}
    	}
    
    	// If resourceVersion is specified, serve it from cache.
    	// It's guaranteed that the returned value is at least that
    	// fresh as the given resourceVersion.
    	getRV, err := c.versioner.ParseResourceVersion(opts.ResourceVersion)
    	if err != nil {
    		return err
    	}
    
    	// Do not create a trace - it's not for free and there are tons
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    // During rotation, any expired session ticket keys are deleted from
    // c.sessionTicketKeys. If the session ticket key that is currently
    // encrypting tickets (ie. the first ticketKey in c.sessionTicketKeys)
    // is not fresh, then a new session ticket key will be
    // created and prepended to c.sessionTicketKeys.
    func (c *Config) ticketKeys(configForClient *Config) []ticketKey {
    	// If the ConfigForClient callback returned a Config with explicitly set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top