Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for Executer (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return this;
        }
    
        @Override
        public void runDependencyActions() {
            runActionInHierarchy(conf -> {
                conf.defaultDependencyActions.execute(conf.dependencies);
                conf.withDependencyActions.execute(conf.dependencies);
    
                // Discard actions after execution
                conf.defaultDependencyActions = ImmutableActionSet.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		if err != nil {
    			logger.Error(err, "Failed to execute iptables-restore", "table", utiliptables.TableNAT)
    			metrics.IPTablesRestoreFailuresTotal.Inc()
    			encounteredError = true
    		}
    	}
    
    	// Flush and remove all of our "-t filter" chains.
    	iptablesData.Reset()
    	if err := ipt.SaveInto(utiliptables.TableFilter, iptablesData); err != nil {
    		logger.Error(err, "Failed to execute iptables-save", "table", utiliptables.TableFilter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    		metrics.FrameworkExtensionPointDuration.WithLabelValues(metrics.Unreserve, framework.Success.String(), f.profileName).Observe(metrics.SinceInSeconds(startTime))
    	}()
    	// Execute the Unreserve operation of each reserve plugin in the
    	// *reverse* order in which the Reserve operation was executed.
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "Unreserve")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Default permissions differ for files and directories:
    
    * *file*: read & write for *owner*, read for *group*, read for *other* (*0644*, *rw-r--r--*)
    * *directory*: read, write & execute for *owner*, read & execute for *group*, read & execute for *other* (*0755*, *rwxr-xr-x*)
    
    [[sec:moving_files_example]]
    == Moving files and directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            EdgeState edge = potentialEdge.edge;
            virtualEdges.add(edge);
            edge.markUsed();
            discoveredEdges.add(edge);
            edge.getSelector().use(false);
        }
    
    
        /**
         * Execute any dependency substitution rules that apply to this dependency.
         *
         * This may be better done as a decorator on ConfigurationMetadata.getDependencies()
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        rewriter.setInsertionPointAfter(op->getParentOfType<func::FuncOp>());
        SymbolTable manager(op->getParentOfType<ModuleOp>());
    
        // Constructs `then_branch`, which is executed when `if_cond` evaluates to
        // true.
        auto then_branch_op =
            rewriter.create<func::FuncOp>(loc, "cond_true", func_type);
        CreateCondTrueBranch(op, shape_dtype, result_type, then_branch_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary =
        "returns `f(inputs)`, where `f`'s body is placed and partitioned.";
    
      let description = [{
    Asynchronously executes a function, potentially across multiple devices but
    within a single process. The kernel places and partitions a given function's
    underlying graph, and executes each of the partitioned subgraphs as a function.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              self._input_saved_model_path,
              self._output_saved_model_path,
              config,
          )
          self.assertTrue(
              self._any_log_contains(
                  'Calibration step is executed in graph mode.',
                  info_logs.records,
              )
          )
          module_str = self._extract_first_xla_call_module_op(
              self._output_saved_model_path
          )
          self.assertTrue(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    "Output:" is compiled, executed, and expected to produce no output.
    
    Godoc displays the body of ExampleXxx to demonstrate the use
    of the function, constant, or variable Xxx. An example of a method M with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. .bazelrc

    # Make Bazel not try to probe the host system for a C++ toolchain.
    build:rbe_base --config=resultstore
    build:rbe_base --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
    build:rbe_base --define=EXECUTOR=remote
    build:rbe_base --jobs=800
    build:rbe_base --remote_executor=grpcs://remotebuildexecution.googleapis.com
    build:rbe_base --remote_timeout=3600
    build:rbe_base --spawn_strategy=remote,worker,standalone,local
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top