Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for east (0.15 sec)

  1. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EIPSEC          = syscall.Errno(0x52)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    	ELOOP           = syscall.Errno(0x3e)
    	EMEDIUMTYPE     = syscall.Errno(0x56)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go

    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EIPSEC          = syscall.Errno(0x52)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    	ELOOP           = syscall.Errno(0x3e)
    	EMEDIUMTYPE     = syscall.Errno(0x56)
    	EMFILE          = syscall.Errno(0x18)
    	EMLINK          = syscall.Errno(0x1f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          // even though K doesn't explicitly implement Comparable.
          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          "ShapedType",
          "return resource_subtype().cast<ShapedType>();",
          [{ mlir::TF::ShapeAttr::get($_ctxt, $_self) }]>;
    
      let extraClassDeclaration = [{
        TensorType resource_subtype() { return resource_type().getSubtypes()[0]; }
    
        ResourceType resource_type() {
          return getElementTypeOrSelf(getResource()).cast<TF::ResourceType>();
        }
      }];
    
      let hasVerifier = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

     * limitations under the License.
     */
    package org.gradle.tooling.internal.consumer.parameters;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.Cast;
    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.tooling.Failure;
    import org.gradle.tooling.events.FinishEvent;
    import org.gradle.tooling.events.OperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	gcdata := typ.GCData
    	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
    }
    
    // nextFast is the fast path of next. nextFast is written to be inlineable and,
    // as the name implies, fast.
    //
    // Callers that are performance-critical should iterate using the following
    // pattern:
    //
    //	for {
    //		var addr uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    func TestWriteString(t *testing.T) {
    	const BufSize = 8
    	buf := new(strings.Builder)
    	b := NewWriterSize(buf, BufSize)
    	b.WriteString("0")                         // easy
    	b.WriteString("123456")                    // still easy
    	b.WriteString("7890")                      // easy after flush
    	b.WriteString("abcdefghijklmnopqrstuvwxy") // hard
    	b.WriteString("z")
    	if err := b.Flush(); err != nil {
    		t.Error("WriteString", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    namespace {
    
    bool AreAllParentsGuaranteedConst(
        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
      for (const Edge* in : n.in_edges()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .col-first, .col-first {
        font-size:0.93em;
    }
    .col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
        font-size:0.93em;
    }
    .col-first, .col-second, .col-constructor-name {
        vertical-align:top;
        overflow: auto;
    }
    .col-last {
        white-space:normal;
    }
    .col-first a:link, .col-first a:visited,
    .col-second a:link, .col-second a:visited,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top