Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for testFoo (0.14 sec)

  1. src/os/proc.go

    // Copyright 2009 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.
    
    // Process etc.
    
    package os
    
    import (
    	"internal/testlog"
    	"runtime"
    	"syscall"
    )
    
    // Args hold the command-line arguments, starting with the program name.
    var Args []string
    
    func init() {
    	if runtime.GOOS == "windows" {
    		// Initialized in exec_windows.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

                .printArguments()
                .printEnvironmentVariable("TEST_FOO")
                .writeTo(testDirectory, "script")
    
            buildFile """
                def execProvider = providers.exec {
                    ${cmdToExecConfig(*testScript.commandLine, "--some-arg")}
                    environment("TEST_FOO", "fooValue")
                }
    
                execProvider.result.get().assertNormalExitValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/MavenM2CacheReuseIntegrationTest.groovy

            buildFile.text = """
    repositories {
        maven { url "${mavenHttpRepo.uri}" }
    }
    configurations { compile }
    dependencies {
        compile 'gradletest.maven.local.cache.test:foo:1.0'
    }
    task retrieve(type: Sync) {
        from configurations.compile
        into 'build'
    }
    """
            and:
            remoteModule.pom.expectHead()
            remoteModule.pom.sha1.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/cc/BUILD

            "//tensorflow/core:lib_internal",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_gen_op_wrappers_cc(
        name = "test_op",
        op_lib_names = [
            "test_op",
        ],
    )
    
    cc_library(
        name = "queue_runner",
        srcs = ["training/queue_runner.cc"],
        hdrs = ["training/queue_runner.h"],
        deps = [
            ":coordinator",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

            maven { url "${mavenHttpRepo.uri}" }
        } else {
            mavenRepo urls: "${mavenHttpRepo.uri}"
        }
    }
    
    configurations {
        compile
    }
    
    dependencies {
        compile 'test:io:1.4'
        compile 'test:lang:2.+'
    }
    
    task check {
        doLast {
            assert configurations.compile*.name as Set == ['io-1.4.jar', 'lang-2.6.jar'] as Set
        }
    }
    """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_lines_test.go

    	cmd.Dir = tmpdir
    	cmd.Env = replaceEnv(cmd.Env, "GOSSADIR", tmpdir)
    	testGoos := "linux" // default to linux
    	if testGoArch() == "wasm" {
    		testGoos = "js"
    	}
    	cmd.Env = replaceEnv(cmd.Env, "GOOS", testGoos)
    	cmd.Env = replaceEnv(cmd.Env, "GOARCH", testGoArch())
    
    	if testing.Verbose() {
    		fmt.Printf("About to run %s\n", asCommandLine("", cmd))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/NtlmTest.java

            this.context = SingletonContext.getInstance();
        }
    
    
        @Test
        public void testParsingType1 () throws IOException {
            int flags = 0x80000000;
            String suppliedDomain = "TESTDOM";
            String suppliedWorkstation = "TESTWS";
            Type1Message t1 = new Type1Message(this.context, flags, suppliedDomain, suppliedWorkstation);
    
            int origFlags = t1.getFlags();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 16 10:38:43 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/schema/validation_test.go

    				},
    				Origin: fakeOrigin{},
    			},
    		},
    	}
    	a := ValidationAnalyzer{s: testSchema}
    	a.Analyze(ctx)
    }
    
    func TestSchemaValidationWrapper(t *testing.T) {
    	testCol := gvk.VirtualService
    
    	m1 := &v1alpha3.VirtualService{}
    	m2 := &v1alpha3.VirtualService{}
    	m3 := &v1alpha3.VirtualService{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            platformModule.parsedPom.packaging == 'pom'
            platformModule.parsedPom.scopes.compile.assertDependsOn("org.test:foo:1.0")
            platformModule.parsedPom.scopes.no_scope.assertDependencyManagement("org.test:bar:1.1")
            platformModule.parsedModuleMetadata.variant('apiElements') {
                dependency("org.test:foo:1.0").exists()
                constraint("org.test:bar:1.1").exists()
                noMoreDependencies()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

          configPath: "/etc/istio/proxy"
          binaryPath: "/usr/local/bin/envoy"
          # The pseudo service name used for Envoy.
          serviceCluster: istio-proxy
      values:
        global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
Back to top