Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for commonA (0.24 sec)

  1. src/net/addrselect.go

    	// problems (see issues 13283 and 18518), so limit to IPv6.
    	if DA.To4() == nil && DB.To4() == nil {
    		commonA := commonPrefixLen(SourceDA, DA)
    		commonB := commonPrefixLen(SourceDB, DB)
    
    		if commonA > commonB {
    			return preferDA
    		}
    		if commonA < commonB {
    			return preferDB
    		}
    	}
    
    	// Rule 10: Otherwise, leave the order unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. common/Makefile.common.mk

    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    # istio/community has its own CONTRIBUTING.md file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """Serves as a common "main" function for all the SavedModel tests.
    
    There is a fair amount of setup needed to initialize tensorflow and get it
    into a proper TF2 execution mode. This hides that boilerplate.
    """
    
    import tempfile
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. cluster/common.sh

      fi
      "${get_binaries_script}"
    }
    
    # Run pushd without stack output
    function pushd() {
      command pushd "$@" > /dev/null
    }
    
    # Run popd without stack output
    # the popd will access `directory stack`, no `real` parameters is actually needed
    # shellcheck disable=SC2120
    function popd() {
      command popd "$@" > /dev/null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/log/command.go

    	IncludeInboundPort      = Command{"IncludeInboundPort", "include inbound port for capture"}
    	InboundCapture          = Command{"InboundCapture", "redirect inbound request to proxy"}
    	KubevirtCommand         = Command{"KubevirtCommand", "Kubevirt outbound redirect"}
    	ExcludeInterfaceCommand = Command{"ExcludeInterfaceCommand", "Excluded interface"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. pkg/controller/volume/common/common.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package common
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/component-helpers/storage/ephemeral"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 18:54:20 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-monolithic/src/common.h

    #ifndef COMMON_HEADER_${sourceIdx}_H
    #define COMMON_HEADER_${sourceIdx}_H
    
    // TODO: Actually do something in this common header
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 168 bytes
    - Viewed (0)
  8. build/common.sh

        )
        "${docker_cmd[@]}"
      fi
    }
    
    # Run a command in the kube-build image.  This assumes that the image has
    # already been built.
    function kube::build::run_build_command() {
      kube::log::status "Running build command..."
      kube::build::run_build_command_ex "${KUBE_BUILD_CONTAINER_NAME}" -- "$@"
    }
    
    # Run a command in the kube-build image.  This assumes that the image has
    # already been built.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/common/common.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package common
    
    var X int
    
    func init() {
    	X = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 210 bytes
    - Viewed (0)
  10. tests/integration/pilot/mcs/common/common.go

    // limitations under the License.
    
    package common
    
    import (
    	"context"
    	"fmt"
    	"os"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top