Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 277 for logic (0.04 sec)

  1. src/net/netip/netip.go

    func (ip Addr) IsGlobalUnicast() bool {
    	if ip.z == z0 {
    		// Invalid or zero-value.
    		return false
    	}
    
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    	// Match package net's IsGlobalUnicast logic. Notably private IPv4 addresses
    	// and ULA IPv6 addresses are still considered "global unicast".
    	if ip.Is4() && (ip == IPv4Unspecified() || ip == AddrFrom4([4]byte{255, 255, 255, 255})) {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    		} else {
    			// Dual Stack
    			if features.EnableDualStack {
    				// using Cluster_ALL to enable Happy Eyeballsfor upstream connections
    				c.DnsLookupFamily = cluster.Cluster_ALL
    			} else {
    				// keep the original logic if Dual Stack is disable
    				c.DnsLookupFamily = cluster.Cluster_V4_ONLY
    			}
    		}
    		c.DnsRefreshRate = cb.req.Push.Mesh.DnsRefreshRate
    		c.RespectDnsTtl = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/sharing_build_logic_between_subprojects.html">Sharing Build Logic between Subprojects</a></li>
                            <li><a href="../userguide/composite_builds.html">Composite Builds</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    				// TODO: extract the logic to detect expiration time, and use a simpler code to rotate to files.
    				_, _ = a.getWorkloadCerts(st)
    			})
    			_, _ = a.getWorkloadCerts(st)
    		}()
    	} else {
    		pkpConf := a.proxyConfig.GetPrivateKeyProvider()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	// Disable GOEXPERIMENT when building toolchain1 and
    	// go_bootstrap. We don't need any experiments for the
    	// bootstrap toolchain, and this lets us avoid duplicating the
    	// GOEXPERIMENT-related build logic from cmd/go here. If the
    	// bootstrap toolchain is < Go 1.17, it will ignore this
    	// anyway since GOEXPERIMENT is baked in; otherwise it will
    	// pick it up from the environment we set here. Once we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. cluster/log-dump/log-dump.sh

      proc=${max_dump_processes}
      start="$(date +%s)"
      # log_dump_ssh_timeout is the maximal number of seconds the log dumping over
      # SSH operation can take. Please note that the logic enforcing the timeout
      # is only a best effort. The actual time of the operation may be longer
      # due to waiting for all the child processes below.
      log_dump_ssh_timeout_seconds="${LOG_DUMP_SSH_TIMEOUT_SECONDS:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let options = [
        Option<"legacy_graph_export_", "legacy-graph-export", "bool",
               /*default=*/"true",
               "Determines whether or not this pass should execute logic that is "
               "reserved for the legacy graph export pipeline to maintain expected "
               "invariants. In the case of this pass, that means manually propagating "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	// Note however that anything in between /108 and /112 will be clamped to /112 due to the limitations of the underlying allocation logic.
    	// TODO: https://github.com/kubernetes/enhancements/pull/1881
    	MaximumBitsForServiceSubnet = 20
    
    	// MinimumAddressesInPodSubnet defines minimum amount of pods in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This file implements logic for lowering TensorFlow dialect to XLA dialect.
    #include <algorithm>
    #include <cctype>
    #include <cmath>
    #include <cstddef>
    #include <cstdint>
    #include <iterator>
    #include <limits>
    #include <numeric>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top