Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for LOGICAL (0.23 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedSet.java

      abstract int indexOf(@CheckForNull Object target);
    
      /*
       * This class is used to serialize all ImmutableSortedSet instances,
       * regardless of implementation type. It captures their "logical contents"
       * only. This is necessary to ensure that the existence of a particular
       * implementation type is an implementation detail.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashMap.java

       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
       * Contains the logical entries, in the range of [0, size()). The high bits of each int are the
       * part of the smeared hash of the key not covered by the hashtable mask, whereas the low bits are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMap.java

        return false;
      }
    
      @Override
      public String toString() {
        return Maps.toStringImpl(this);
      }
    
      /**
       * Serialized type for all ImmutableMap instances. It captures the logical contents and they are
       * reconstructed using public factory methods. This ensures that the implementation types remain
       * as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager.go

    		return containers[0:1]
    	}
    	return nil
    }
    
    // checkContainerStateTransition ensures that no container is trying to transition
    // from a terminated to non-terminated state, which is illegal and indicates a
    // logical error in the kubelet.
    func checkContainerStateTransition(oldStatuses, newStatuses *v1.PodStatus, podSpec *v1.PodSpec) error {
    	// If we should always restart, containers are allowed to leave the terminated state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/typecheck.go

    			n.X, n.Y, _ = tcArith(n, n.AsOp, n.X, n.Y)
    		default:
    			base.Fatalf("invalid assign op: %v", n.AsOp)
    		}
    		return n
    
    	// logical operators
    	case ir.OANDAND, ir.OOROR:
    		n := n.(*ir.LogicalExpr)
    		n.X, n.Y = Expr(n.X), Expr(n.Y)
    		if n.X.Type() == nil || n.Y.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// - any field of a priorityLevelState held in that map
    	lock sync.RWMutex
    
    	// flowSchemas holds the flow schema objects, sorted by increasing
    	// numerical (decreasing logical) matching precedence.  Every
    	// FlowSchema in this slice is immutable.
    	flowSchemas apihelpers.FlowSchemaSequence
    
    	// priorityLevelStates maps the PriorityLevelConfiguration object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    	for datap.ftab[idx+1].entryoff <= pcOff {
    		idx++
    	}
    
    	funcoff := datap.ftab[idx].funcoff
    	return funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[funcoff])), datap}
    }
    
    // A srcFunc represents a logical function in the source code. This may
    // correspond to an actual symbol in the binary text, or it may correspond to a
    // source function that has been inlined.
    type srcFunc struct {
    	datap     *moduledata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	//   may have many ports.  So a workload implementing such a Service would need
    	//   multiple ServiceTargets, one for each port.
    	// - A single workload may implement multiple logical Services.
    	//
    	// In the second case, multiple services may be implemented by the same physical port number,
    	// though with a different ServicePort and IstioEndpoint for each.  If any of these overlapping
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableMap.java

        return false;
      }
    
      @Override
      public String toString() {
        return Maps.toStringImpl(this);
      }
    
      /**
       * Serialized type for all ImmutableMap instances. It captures the logical contents and they are
       * reconstructed using public factory methods. This ensures that the implementation types remain
       * as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    support was the first to introduce a new concept for building source-based projects: _source sets_. The main idea is that source files and resources are often logically grouped by type, such as application code, unit tests and integration tests. Each logical group typically has its own sets of file dependencies, classpaths, and more. Significantly, the files that form a source set _don't have to be located in the same directory_!
    
    Source sets are a powerful concept that tie together several aspects...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
Back to top