Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 924 for flive (0.04 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/KeepAliveMode.java

     * limitations under the License.
     */
    
    package org.gradle.workers.internal;
    
    public enum KeepAliveMode {
        /**
         * Keep alive until the end of the build session
         */
        SESSION,
        /**
         * Keep alive until the daemon stops
         */
        DAEMON
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    		typeConverter,
    		&FakeObjectConvertor{},
    		&FakeObjectDefaulter{},
    		gvk.GroupVersion(),
    		gvk.GroupVersion(),
    		nil,
    	)
    	if err != nil {
    		panic(err)
    	}
    	live := &unstructured.Unstructured{}
    	live.SetKind(gvk.Kind)
    	live.SetAPIVersion(gvk.GroupVersion().String())
    	// This is different from `internal.NewDefaultFieldManager` because:
    	// 1. We don't want to create a `internal.FieldManager`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

          .assertLogEqual("<-- END HTTP")
          .assertNoMoreLogs()
        networkLogs
          .assertLogEqual("--> GET $url http/1.1")
          .assertLogEqual("Host: $host")
          .assertLogEqual("Connection: Keep-Alive")
          .assertLogEqual("Accept-Encoding: gzip")
          .assertLogMatch(Regex("""User-Agent: okhttp/.+"""))
          .assertLogEqual("--> END GET")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms\)"""))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to compare last applied object and live object: %v", err)
    	}
    
    	// Remove fields in last applied that are different, added, or missing in
    	// the live object.
    	// Because last-applied fields don't match the live object fields,
    	// then we don't own these fields.
    	lastAppliedObjFieldSet = lastAppliedObjFieldSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/build_xla_ops_pass.cc

    Output ControlToData(const Scope& scope, Node* control) {
      // The choice of data type here is important.
      //
      // We implement a "control merge", which is a control edge that is alive if
      // either of two nodes (denoted as A and B below) are alive, in the following
      // manner:
      //
      //   A --ctrl--> Const0 --data--> Merge --data--> Identity
      //                                 ^                 |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/legacytokentracking/controller_test.go

    		clientObjects     []runtime.Object
    		existingConfigMap *corev1.ConfigMap
    
    		expectedErr     error
    		expectedActions []core.Action
    	}{
    		{
    			name:          "create configmap [no cache, no live object]",
    			clientObjects: []runtime.Object{},
    			expectedActions: []core.Action{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

            continue;
          use.set(std::get<1>(p));
        }
      }
    }
    
    // Get all escaped live-out values of a region.
    void GetLiveOuts(Region* region, llvm::SmallVectorImpl<Value>* live_outs) {
      live_outs->clear();
    
      for (Operation& op : region->front()) {
        for (Value v : op.getResults()) {
          // A value is live-out if any of its users are not inside value producer's
          // region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/net/tcpsockopt_windows.go

    	// Otherwise, if any of the fields were not provided, just leaving them
    	// zero will knock off any existing values of keep-alive.
    	// Unfortunately, Windows doesn't support retrieving current keep-alive
    	// settings in any form programmatically, which disable us to first retrieve
    	// the current keep-alive settings, then set it without unwanted corruption.
    	switch {
    	case idle < 0 && interval >= 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    	}
    	before = f.Live()
    	// Wait to make sure the timestamp is different
    	time.Sleep(time.Second)
    	if err := f.Update(obj.DeepCopyObject(), "fieldmanager_test_update"); err != nil {
    		t.Fatalf("failed to update object: %v", err)
    	}
    	if !reflect.DeepEqual(before, f.Live()) {
    		t.Fatalf("No-op update has changed the object:\n%v\n---\n%v", before, f.Live())
    	}
    	before = f.Live()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

                  ElementsAre(1, 101, 1, 101, 0));
      r_.Remat({/*begin=*/1, /*end=*/2, /*insert=*/3});
    
      // /* after: */
      // %0 = f1()
      // %1 = f2(%0)
      // f3()  /* %0 is kept alive */
      // %2 = f2(%0)
      // f4()
      EXPECT_THAT(r_.GetMemProfile(), ElementsAre(1, 101, 1, 101, 0));
      EXPECT_THAT(r_.AddTensor(0), 3);
    }
    
    TEST_F(RematTest, BlockRematDuplicatesIntraBlockValues) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top