Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for enter_1 (0.15 sec)

  1. src/runtime/proc.go

    			delay *= 2
    		}
    		if delay > 10*1000 { // up to 10ms
    			delay = 10 * 1000
    		}
    		usleep(delay)
    
    		// sysmon should not enter deep sleep if schedtrace is enabled so that
    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		semconv.K8SPodNameKey.String(pod.Name),
    		attribute.String("k8s.pod.update_type", updateType.String()),
    		semconv.K8SNamespaceNameKey.String(pod.Namespace),
    	))
    	klog.V(4).InfoS("SyncPod enter", "pod", klog.KObj(pod), "podUID", pod.UID)
    	defer func() {
    		klog.V(4).InfoS("SyncPod exit", "pod", klog.KObj(pod), "podUID", pod.UID, "isTerminal", isTerminal)
    		otelSpan.End()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        Iterator<? extends Entry<K, ? extends V>> entryItr = map.entrySet().iterator();
        if (!entryItr.hasNext()) {
          return ImmutableMap.of();
        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

        Iterator<? extends Entry<K, ? extends V>> entryItr = map.entrySet().iterator();
        if (!entryItr.hasNext()) {
          return ImmutableMap.of();
        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					apiVersion: v2
    					kind: Baz
    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				- name: entry2
    				  apiVersion: v3
    				  kind: Bar
    			`),
    			newObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    					otherField: newValue
    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				  otherField: newValue2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // Returns if the shape inference pass supports an op outside the TF dialect.
    bool IsSupportedNonTFOp(Operation* op) {
      return isa<tf_device::ReturnOp, tf_device::ClusterOp, tf_device::LaunchOp,
                 tf_executor::EnterOp, tf_executor::ExitOp, tf_executor::FetchOp,
                 tf_executor::GraphOp, tf_executor::IslandOp,
                 tf_executor::LoopCondOp, tf_executor::MergeOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    	// https://github.com/jpeach/snippets/blob/889fda84cc8713af09205438b33553eb69dd5355/re2sz.cc to
    	// evaluate program size.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	// StateClosed.
    	StateNew ConnState = iota
    
    	// StateActive represents a connection that has read 1 or more
    	// bytes of a request. The Server.ConnState hook for
    	// StateActive fires before the request has entered a handler
    	// and doesn't fire again until the request has been
    	// handled. After the request is handled, the state
    	// transitions to StateClosed, StateHijacked, or StateIdle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                              result.attributes);
      }
      if (node.IsEnter()) {
        return builder_.create<mlir::tf_executor::EnterOp>(loc, types, operands,
                                                           result.attributes);
      }
      if (node.IsExit()) {
        return builder_.create<mlir::tf_executor::ExitOp>(loc, types, operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		t.Fatalf("got %q want %q", selectName, insertName)
    	}
    }
    
    // TestConnIsValid verifies that a database connection that should be discarded,
    // is actually discarded and does not re-enter the connection pool.
    // If the IsValid method from *fakeConn is removed, this test will fail.
    func TestConnIsValid(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxOpenConns(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top