Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 303 for getLogs (0.2 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

         */
        @Nullable
        List<String> getCleanTasks();
    
        /**
         * The Gradle arguments. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/analysis/test_tensor_array_side_effect_analysis.cc

      }
      void runOnOperation() override {
        auto module = getOperation();
        TensorArraySideEffectAnalysis tensor_array_side_effect_analysis(module);
    
        for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
          func_op.emitRemark() << "HasAtMostTensorArrayEffect: "
                               << tensor_array_side_effect_analysis
                                      .HasAtMostTensorArrayEffect(func_op);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 10 21:32:05 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         */
        public String getMessageCode() {
            return messageCode;
        }
    
        /**
         * Returns arguments of a message
         *
         * @return array of arguments
         */
        public Object[] getArgs() {
            return args;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        /**
         * Returns a simple message without a message code.
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/podresources/server_v1alpha1.go

    	metrics.PodResourcesEndpointRequestsTotalCount.WithLabelValues("v1alpha1").Inc()
    	pods := p.podsProvider.GetPods()
    	podResources := make([]*v1alpha1.PodResources, len(pods))
    	p.devicesProvider.UpdateAllocatedDevices()
    
    	for i, pod := range pods {
    		pRes := v1alpha1.PodResources{
    			Name:       pod.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/podresources/types.go

    	GetAllocatableDevices() []*podresourcesapi.ContainerDevices
    }
    
    // PodsProvider knows how to provide the pods admitted by the node
    type PodsProvider interface {
    	GetPods() []*v1.Pod
    	GetPodByName(namespace, name string) (*v1.Pod, bool)
    }
    
    // CPUsProvider knows how to provide the cpus used by the given container
    type CPUsProvider interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocation.java

            this.workDirectory = workDirectory;
            this.args = args;
            this.context = context;
            this.oplogger = oplogger;
        }
    
        @Override
        public Iterable<String> getArgs() {
            return args;
        }
    
        @Override
        public BuildOperationLogger getLogger() {
            return oplogger;
        }
    
        @Override
        public File getWorkDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/Stripper.java

            @Override
            public List<String> transform(StripperSpec spec) {
                List<String> args = new ArrayList<>();
                args.addAll(spec.getArgs());
                args.add("-S");
                args.add("-o");
                args.add(spec.getOutputFile().getAbsolutePath());
                args.add(spec.getBinaryFile().getAbsolutePath());
                return args;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        CliRequest(String[] args, ClassWorld classWorld) {
            this.args = args;
            this.classWorld = classWorld;
            this.request = new DefaultMavenExecutionRequest();
        }
    
        public String[] getArgs() {
            return args;
        }
    
        public CommandLine getCommandLine() {
            return commandLine;
        }
    
        public ClassWorld getClassWorld() {
            return classWorld;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            // Don't write to the right-most column, as on some consoles the cursor will wrap to the next line and currently wrapping causes
            // layout weirdness
            int maxWidth;
            int cols = consoleMetaData.getCols();
            if (cols > 0) {
                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTaskSelector.java

        }
    
        public LaunchableGradleTaskSelector setDisplayName(String displayName) {
            this.displayName = displayName;
            return this;
        }
    
        @Override
        public List<String> getArgs() {
            return Collections.singletonList(taskName);
        }
    
        public LaunchableGradleTaskSelector setTaskName(String taskName) {
            this.taskName = taskName;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top