Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for commandline (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheSkipCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "skip reading cached state on #commandLine"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                abstract class MyTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

            return []
        }
    
        static List<SystemPropertyInjection> all(String prop, String value) {
            return [
                commandLine(prop, value),
                gradleProperties(prop, value),
                clientJvmArgs(prop, value)
            ]
        }
    
        static SystemPropertyInjection commandLine(String prop, String value) {
            return new SystemPropertyInjection() {
                @Override
                String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

        ExternalProcessFixture(TestFile testDirectory) {
            this.testDirectory = testDirectory
        }
    
        private String getCommandLineAsVarargLiterals() {
            return ShellScript.cmdToVarargLiterals(testExecutable.commandLine)
        }
    
        interface Snippets {
            abstract String getBody()
    
            abstract String getImports()
        }
    
        interface SnippetsFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <iostream>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/InitLLVM.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/PrettyStackTrace.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        @Override
        public Action<? super ExecutionListener> createAction(CommandLineParser parser, ParsedCommandLine commandLine) {
            Parameters parameters = buildEnvironmentConfigurationConverter.convertParameters(commandLine, null);
    
            StartParameterInternal startParameter = parameters.getStartParameter();
            DaemonParameters daemonParameters = parameters.getDaemonParameters();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.h"
    
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    #include "llvm/Support/CommandLine.h"
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSFORMS_PASSES_H_
    
    #include <cstdint>
    #include <memory>
    #include <string>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/Support/CommandLine.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributeInterfaces.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      }
    
      if ((Get-service $service).Status -ne 'Stopped') {
        # Force kill the processes.
        Stop-Process -Force -PassThru -Id (Get-WmiObject win32_process |
          Where CommandLine -Like $cmdline).ProcessId
    
        # Wait until process has stopped.
        $waited = 0
        $log_period = 10
        $timeout = 60
        while ((Get-service $service).Status -ne 'Stopped' -and $waited -lt $timeout) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    			if !reflect.DeepEqual(podIPs, tc.expectedIPs) {
    				t.Fatalf("Expected PodIPs %#v, got %#v", tc.expectedIPs, podIPs)
    			}
    		})
    	}
    }
    
    // func init() {
    // 	klog.InitFlags(flag.CommandLine)
    // 	flag.CommandLine.Lookup("v").Value.Set("5")
    // }
    
    func TestConvertToAPIContainerStatusesDataRace(t *testing.T) {
    	pod := podWithUIDNameNs("12345", "test-pod", "test-namespace")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

                    ProcessGroovyMethodsExecute.execute(commandList);
                    ProcessGroovyMethodsExecute.execute(commandList, envpArray, project.file("test"));
                    ProcessGroovyMethodsExecute.execute(commandList, envpList, project.file("test"));
    
                    RuntimeExec e = new RuntimeExec();
                    e.exec("some string");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top