Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,352 for notC (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    $ ./gradlew updateDaemonJvm --jvm-version=17
    ----
    
    If you run the task without any arguments, and the properties file does not exist, then the JVM used by the daemon will provide the version value.
    
    NOTE: Currently, Gradle only supports the major JVM version as a criterion.
    Support for other toolchains criteria will be added in a future release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	for _, service := range serviceEntryServices {
    		for _, serviceEntryPort := range serviceEntry.Ports {
    			// note: this is same as workloadentry handler
    			// endpoint port will first use the port defined in wle with same port name,
    			// if not port name not match, use the targetPort specified in ServiceEntry
    			// if both not matched, fallback to ServiceEntry port number.
    			var targetPort uint32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    		bkey, err := boringPrivateKey(priv)
    		if err != nil {
    			return nil, err
    		}
    		// Note: BoringCrypto always does decrypt "withCheck".
    		// (It's not just decrypt.)
    		s, err := boring.DecryptRSANoPadding(bkey, em)
    		if err != nil {
    			return nil, err
    		}
    		return s, nil
    	}
    
    	// RFC 8017: "Note that the octet length of EM will be one less than k if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

       * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>.
       *
       * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it
       * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
       * are), NOT IPv4 compatible addresses (which they are generally NOT considered to be).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. src/os/exec.go

    	// to blocking mode, which means that SetDeadline will stop working
    	// and calling Close will not interrupt a Read or Write.
    	Files []*File
    
    	// Operating system-specific process creation attributes.
    	// Note that setting this field means that your program
    	// may not execute properly or even compile on some
    	// operating systems.
    	Sys *syscall.SysProcAttr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface.go

    type BindPlugin interface {
    	Plugin
    	// Bind plugins will not be called until all pre-bind plugins have completed. Each
    	// bind plugin is called in the configured order. A bind plugin may choose whether
    	// or not to handle the given Pod. If a bind plugin chooses to handle a Pod, the
    	// remaining bind plugins are skipped. When a bind plugin does not handle a pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes.go

    	{"BETWEEN_256_KB_AND_512_KB", 256 * humanize.KiByte, 512*humanize.KiByte - 1}, // not exported, for support use only
    	{"BETWEEN_512_KB_AND_1_MB", 512 * humanize.KiByte, humanize.MiByte - 1},       // not exported, for support use only
    	{"BETWEEN_1024B_AND_1_MB", humanize.KiByte, humanize.MiByte - 1},
    	{"BETWEEN_1_MB_AND_10_MB", humanize.MiByte, humanize.MiByte*10 - 1},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      Value BacktrackValue(Value value);
    
     private:
      // Returns the analysis for the given region (analyzing the region if it has
      // not yet been analyzed).
      const InfoT& GetOrCreateAnalysis(Region& region) {
        auto it = info_map_.find(&region);
        if (it == info_map_.end()) {
          // Note: Keep object construction and insertion separate. If we use
          // emplace() to construct and insert in a single shot, when analyzing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    	type Retract struct {
    		Low       string
    		High      string
    		Rationale string
    	}
    
    Retract entries representing a single version (not an interval) will have
    the "Low" and "High" fields set to the same value.
    
    Note that this only describes the go.mod file itself, not other modules
    referred to indirectly. For the full set of modules available to a build,
    use 'go list -m -json all'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on elements that are not mutually
       * comparable.
       *
       * @throws ClassCastException if the elements are not mutually comparable
       * @throws NullPointerException if any of {@code elements} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top