Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,173 for consistency (0.23 sec)

  1. src/cmd/go/testdata/script/mod_download.txt

    # selected version from the broader graph, but the go.mod file will also be
    # updated to list the correct versions. If at some point we change 'go mod
    # download' to stop updating for consistency, then it should fail if the
    # requirements are inconsistent.)
    
    rm go.sum
    cp go.mod.orig go.mod
    go mod edit -go=1.17
    cp go.mod.update go.mod.go117
    go mod edit -go=1.17 go.mod.go117
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/controller/repair.go

    }
    
    // doRunOnce verifies the state of the port allocations and returns an error if an unrecoverable problem occurs.
    func (c *Repair) doRunOnce() error {
    	// TODO: (per smarterclayton) if Get() or ListServices() is a weak consistency read,
    	// or if they are executed against different leaders,
    	// the ordering guarantee required to ensure no port is allocated twice is violated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/util/iptables/testing/parse.go

    // *match* or *don't match* that value). But string-valued parameters that can't be
    // negated use `IPTablesValue` rather than `string` too, just for API consistency.
    //
    // Parameters that don't take a value are stored as `*bool`, where the value is `nil` if
    // the parameter was not present, `&true` if the parameter was present, or `&false` if the
    // parameter was present but negated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

       * may prefer to invoke that method directly; this method exists only for consistency with the
       * other utilities in this package.
       *
       * <p><b>Note:</b> this method simply delegates to the JDK method {@link Float#compare}. It is
       * provided for consistency with the other primitive types, whose compare methods were not added
       * to the JDK until JDK 7.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

       * may prefer to invoke that method directly; this method exists only for consistency with the
       * other utilities in this package.
       *
       * <p><b>Note:</b> this method simply delegates to the JDK method {@link Float#compare}. It is
       * provided for consistency with the other primitive types, whose compare methods were not added
       * to the JDK until JDK 7.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/go.go

    				}
    			}
    		}
    	}
    
    	// TODO(aix)
    	if ctxt.HeadType == objabi.Hdarwin || ctxt.HeadType == objabi.Haix {
    		return
    	}
    
    	// Add dynamic symbols.
    	for _, s := range ctxt.dynexp {
    		// Consistency check.
    		if !ctxt.loader.AttrReachable(s) {
    			panic("dynexp entry not reachable")
    		}
    
    		Adddynsym(ctxt.loader, &ctxt.Target, &ctxt.ArchSyms, s)
    	}
    
    	for _, lib := range dedupLibraries(ctxt, dynlib) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //
    // If some configuration types are not provided, or provided only partially, kubeadm will use default values; defaults
    // provided by kubeadm includes also enforcing consistency of values across components when required (e.g.
    // cluster-cidr flag on controller manager and clusterCIDR on kube-proxy).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableList.java

        return CollectCollectors.toImmutableList();
      }
    
      /**
       * Returns the empty immutable list. This list behaves and performs comparably to {@link
       * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      // Casting to any type is safe because the list will never hold any elements.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. src/net/net_fake.go

    	var q packetQueueState
    	var empty chan packetQueueState
    	if len(b) == 0 {
    		// For consistency with the implementation on Unix platforms,
    		// allow a zero-length Read to proceed if the queue is empty.
    		// (Without this, TestZeroByteRead deadlocks.)
    		empty = pq.empty
    	}
    
    	select {
    	case <-dt.expired:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/config.go

    // notification handlers must be registered prior to calling _Run_, and the
    // cache requires initial synchronization grace period after calling  _Run_.
    //
    // Update notifications require the following consistency guarantee: the view
    // in the cache must be AT LEAST as fresh as the moment notification arrives, but
    // MAY BE more fresh (e.g. if _Delete_ cancels an _Add_ event).
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top