Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,159 for _root (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    The following are equivalent when _run from the root project_:
    
    ----
    $ gradle :subproject:taskName
    ----
    
    ----
    $ gradle subproject:taskName
    ----
    
    You can also run a task for _all_ subprojects using a task _selector_ that consists of only the task name.
    
    The following command runs the `test` task for all subprojects when invoked from the _root project directory_:
    
    ----
    $ gradle test
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      unsigned a_root = FindRoot(a);
      unsigned b_root = FindRoot(b);
    
      // Already members of the same cluster.
      if (a_root == b_root) return failure();
    
      // Verify that merging two clusters will not break dominance property.
      Operation *a_insertion_point = members[a_root].insertion_point;
      Operation *b_insertion_point = members[b_root].insertion_point;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/text/template/multi_test.go

    	cloneText3 = `{{define "c"}}root{{end}}`
    	cloneText4 = `{{define "c"}}clone{{end}}`
    )
    
    func TestClone(t *testing.T) {
    	// Create some templates and clone the root.
    	root, err := New("root").Parse(cloneText1)
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = root.Parse(cloneText2)
    	if err != nil {
    		t.Fatal(err)
    	}
    	clone := Must(root.Clone())
    	// Add variants to both.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  6. OWNERS_ALIASES

      sig-windows-api-reviewers:
        - jayunit100
        - jsturtevant
        - marosset
      # Note: dep-approvers has approval on root files (including OWNERS_ALIASES) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer updates of root files other than go.mod/go.sum to dep-approvers.
      dep-approvers:
        - BenTheElder
        - cblecker
        - dims
        - thockin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

    TEST(ResourceOperationSafetyAnalysisTest, ChainOfOps) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

        CLASS CLASS name:Generic modality:FINAL visibility:public superTypes:[<root>.Ordinary; <root>.Intf]
          annotations:
            Anno
          $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.Generic<T of <root>.Generic>
          TYPE_PARAMETER name:T index:0 variance: superTypes:[kotlin.Any?] reified:false
          CONSTRUCTOR visibility:public <> () returnType:<root>.Generic<T of <root>.Generic> [primary]
            BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

            then:
            elementName("root") == "root"
            elementName("root:app") == "root-app"
            elementName("root:appId") == "root-appId"
            elementName("root:servicesId") == "root-servicesId"
            elementName("root:services") == "root-services"
            elementName("root:servicesId:barId") == "bar"
            elementName("root:servicesId:barId:app") == "root-services-bar-app"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32);
      Output size = ops::Const(root.WithOpName("size"), {-1, 500});
      Output control_pred = ops::Placeholder(root.WithOpName("control"), DT_BOOL);
      Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size);
      root.graph()->AddControlEdge(control_pred.node(), slice.node());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top