Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for branchy (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def branch6 = new DefaultMultiCauseException("sixth failure", intermediateFailure2)
    
            Throwable exception = new ContextAwareException(new TypedResolveException("task dependencies", "org:example:1.0", [branch1, branch2, branch3, branch4, branch5, branch6]))
    
            when:
            reporter.buildFinished(result(exception))
            print(output.value)
    
            then:
            output.value == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      //
      // Two ops with the same groups and different branches are considered
      // parallel so are not made dependent. For example if `OpA` has parallel_ids
      //   `{group0:branch0, group1:branch0}`
      // and `OpB` has parallel_ids
      //   `{group0:branch1, graph1:branch0}`
      // then `OpA` and `OpB` are executed in parallel because `group0` is common
      // with a different branch.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	s.f.NamedValues[loc] = append(values, v)
    }
    
    // Branch is an unresolved branch.
    type Branch struct {
    	P *obj.Prog  // branch instruction
    	B *ssa.Block // target
    }
    
    // State contains state needed during Prog generation.
    type State struct {
    	ABI obj.ABI
    
    	pp *objw.Progs
    
    	// Branches remembers all the branch instructions we've seen
    	// and where they would like to go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //          which represents the second branch of replicate group 0 and
    //          the first branch of parallel group 0.
    // First instance of "tf.OpD" after flattening will have
    //          `_parallel_execution_ids = "r0:0,p0:1"`
    //          which represents the first branch of replicate group 0 and
    //          the second branch of parallel group 0.
    // Second instance of "tf.OpD" after flattening will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    // that every single condition was handled and accounted for in the code, even
    // if it resulted in no-op code branches.
    //
    // As a result, the controller code may seem overly verbose, commented, and
    // 'branchy'. However, a large amount of business knowledge and context is
    // recorded here in order to ensure that future maintainers can correctly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. docs/hotfixes.md

    ```
    λ git checkout RELEASE.2021-04-22T15-44-28Z
    ```
    
    Create a branch and proceed to push the branch **upstream**
    > (upstream here points to ******@****.***:minio/minio.git)
    
    ```
    λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix
    λ git push -u upstream RELEASE.2021-04-22T15-44-28Z.hotfix
    ```
    
    Pick the relevant commit-id say for example commit-id from the master branch
    
    ```
    commit 4f3317effea38c203c358af9cb5ce3c0e4173976
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // branch functions to (a) drop the ununsed return values, and (b) as a result
    // if some argument becomes unused in all branches, drop that argument and the
    // corresponding if/case input operand.
    void EliminateUnusedResultsForIfCase(Operation *op,
                                         ArrayRef<func::FuncOp> branches) {
      // Clone branch functions if needed since we will be mutating them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. .github/workflows/scorecard.yml

    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
      # To guarantee Maintained check is occasionally updated. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
      schedule:
        - cron: '45 9 * * 0'
      push:
        branches: [ "master" ]
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      // Rewrite the branches.
      RegionRange branches = case_op.getRegions();
    
      for (Region* branch : branches) {
        if (failed(DecomposeTensorListOpsInternal(
                &branch->front(), module, buffer_to_size,
                decomposed_partitioned_call_callees)))
          return failure();
      }
    
      // Get the output buffer index to size index mapping one of the branches. It
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    // else branch of the first comparison is executed, we already know that i < len(a).
    // The code for the second panic can be removed.
    //
    // prove works by finding contradictions and trimming branches whose
    // conditions are unsatisfiable given the branches leading up to them.
    // It tracks a "fact table" of branch conditions. For each branching
    // block, it asserts the branch conditions that uniquely dominate that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top