Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for know (0.1 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    			return
    		}
    	}
    
    	// Derived facts below here are only about numbers.
    	if d != signed && d != unsigned {
    		return
    	}
    
    	// Additional facts we know given the relationship between len and cap.
    	//
    	// TODO: Since prove now derives transitive relations, it
    	// should be sufficient to learn that len(w) <= cap(w) at the
    	// beginning of prove where we look for all len/cap ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// As we scan the array left-to-right, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    				goto Error
    			}
    			n := check.indexedElts(e.Elts, utyp.elem, utyp.len)
    			// If we have an array of unknown length (usually [...]T arrays, but also
    			// arrays [n]T where n is invalid) set the length now that we know it and
    			// record the type for the array (usually done by check.typ which is not
    			// called for [...]T). We handle [...]T arrays and arrays with invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    				goto Error
    			}
    			n := check.indexedElts(e.ElemList, utyp.elem, utyp.len)
    			// If we have an array of unknown length (usually [...]T arrays, but also
    			// arrays [n]T where n is invalid) set the length now that we know it and
    			// record the type for the array (usually done by check.typ which is not
    			// called for [...]T). We handle [...]T arrays and arrays with invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return framework.QueueSkip, nil
    	}
    
    	// Once we get here, all changes which are known to require special responses
    	// have been checked for. Whatever the change was, we don't know exactly how
    	// to handle it and thus return Queue. This will cause the
    	// scheduler to treat the event as if no event hint callback had been provided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    		}
    
    	case _Arrow:
    		// receive op (<-x) or receive-only channel (<-chan E)
    		pos := p.pos()
    		p.next()
    
    		// If the next token is _Chan we still don't know if it is
    		// a channel (<-chan int) or a receive op (<-chan int(ch)).
    		// We only know once we have found the end of the unaryExpr.
    
    		x := p.unaryExpr()
    
    		// There are two cases:
    		//
    		//   <-chan...  => <-x is a channel type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

         * class searches and combinations with imports, since the outer class we know is already resolved.
         */
        private static class ConstructedNestedClass extends ClassNode {
            private final ClassNode knownEnclosingType;
    
            public ConstructedNestedClass(ClassNode outer, String inner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * accepted (in which case it returns {@code true}). If it returns {@code false}, the {@code
       * Future} may have previously been set asynchronously, in which case its result may not be known
       * yet. That result, though not yet known, cannot be overridden by a call to a {@code set*}
       * method, only by a call to {@link #cancel}.
       *
       * <p>Beware of completing a future while holding a lock. Its listeners may do slow work or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * accepted (in which case it returns {@code true}). If it returns {@code false}, the {@code
       * Future} may have previously been set asynchronously, in which case its result may not be known
       * yet. That result, though not yet known, cannot be overridden by a call to a {@code set*}
       * method, only by a call to {@link #cancel}.
       *
       * <p>Beware of completing a future while holding a lock. Its listeners may do slow work or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. pkg/kubelet/pod_workers.go

    	var firstTime bool
    	now := p.clock.Now()
    	status, ok := p.podSyncStatuses[uid]
    	if !ok {
    		klog.V(4).InfoS("Pod is being synced for the first time", "pod", klog.KRef(ns, name), "podUID", uid, "updateType", options.UpdateType)
    		firstTime = true
    		status = &podSyncStatus{
    			syncedAt: now,
    			fullname: kubecontainer.BuildPodFullName(name, ns),
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top