Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,693 for Common7 (0.11 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

            @Override
            File getCrossCompilePath(File basePath) {
                return LEGACY_X86_ON_X86.getBinPath(basePath);
            }
        };
    
        private static final String PATH_COMMON = "Common7/";
        private static final String PATH_COMMONTOOLS = PATH_COMMON + "Tools/";
        private static final String PATH_COMMONIDE = PATH_COMMON + "IDE/";
        private static final String PATH_INCLUDE = "include/";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            def dir = tmpDir.createDir(name)
            dir.createDir("Common7")
            dir.createFile("VC/Tools/MSVC/1.2.3.4/bin/HostX86/x86/cl.exe")
            dir.createFile("VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt").text = "1.2.3.4"
            return dir
        }
    
        def vsDir(String name) {
            def dir = tmpDir.createDir(name)
            dir.createDir("Common7")
            dir.createFile("VC/bin/cl.exe")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

    public class DefaultVisualStudioLocator implements VisualStudioLocator {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultVisualStudioLocator.class);
        private static final String PATH_COMMON = "Common7/";
        private static final String PATH_BIN = "bin/";
        private static final String LEGACY_COMPILER_FILENAME = "cl.exe";
        private static final String VS2017_COMPILER_FILENAME = "HostX86/x86/cl.exe";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\VS\VC\Tools\MSVC\14.33.31629\bin\Hostx64\x64;C:\VS\Common7\Tools;C:\VS\MSBuild\Current\Bin\", \"Machine\");
    
    # Add signtool.exe to the PATH. Note this path may need to be edited if updates
    # are made to the Windows 10 SDK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  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