Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 590 for branchy (0.32 sec)

  1. 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)
  2. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    # Adding commits to the above branches updates both the branch heads and the
    # corresponding bookmarks.
    # But apparently at some point it did not do so? The original copy of this repo
    # had bookmarks pointing to the base of each branch instead of the tip. 🤔
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. test/opt_branchlikely.go

    		z++
    	} else {
    		y = g(z, x, y)
    	}
    	if y+z == 3 { // ERROR "Branch prediction rule call < exit"
    		println("ha ha")
    	} else {
    		panic("help help help")
    	}
    	if x != 0 { // ERROR "Branch prediction rule default < ret"
    		for i := 0; i < x; i++ { // ERROR "Branch prediction rule stay in loop"
    			if x == 4 { // ERROR "Branch prediction rule stay in loop"
    				return a
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    			if p.Kind != BlockIf || p == b {
    				continue
    			}
    			pbranch := positive
    			if pk.i == 1 {
    				pbranch = negative
    			}
    			ft.checkpoint()
    			// Assume branch p->b is taken.
    			addBranchRestrictions(ft, p, pbranch)
    			// Check if any outgoing branch is unreachable based on the above condition.
    			parent := b
    			for j, bbranch := range [...]branch{positive, negative} {
    				ft.checkpoint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. RELEASE_BRANCHES.md

    # Release Branches
    
    Release branches have a name of `release-MAJOR.MINOR`. Essential Istio repositories are branched from master roughly 4
    weeks prior to a new release. The `istio/istio.io` repository does not get branched until the release is ready
    for publication.
    
    This document outlines getting in new features after a new branch has been cut and the process for getting a PR
    merged in before and after the first public release.
    
    # Feature Freeze
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    	<dependencies>
    		<dependency name="mymodule2" rev="2.0" e:attr4="value4"/>
    		<dependency name="mymodule3" rev="2.0" changing="true" transitive="false"/>
    		<dependency org="yourorg" name="yourmodule1" branch="trunk" rev="1.1" branchConstraint="branch1" revConstraint="1+" conf="myconf1"/>
    		<dependency org="yourorg" name="yourmodule2" rev="2+" conf="myconf1->yourconf1"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      %0 = "tf.Case"(%arg0, %arg1) {branches = [@branch_0, @branch_1], is_stateless = false} : (tensor<i32>, tensor<!tf_type.resource<tensor<1x2x3xf32>>>) -> tensor<1x2x3xf32>
    
      // CHECK: [[Result0:%.*]] = "tf.CaseRegion"
      // CHECK: [[Result1:%.*]] = func.call @branch_0
      // CHECK: "tf.Yield"([[Result1]])
      // CHECK: [[Result2:%.*]] = func.call @branch_1
      // CHECK: "tf.Yield"([[Result2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

              default:
                outputs = branches[nbranches-1](inputs);
                break;
            }
            ```
        Example: %res = mlrt.case %branch_idx [@branch0, @branch1] (%arg0, %arg1) : (i32, i32) -> (i32)
      }];
    
      let arguments = (ins I32:$branch_index,
                           ConfinedAttr<SymbolRefArrayAttr, [ArrayMinCount<1>]>:$branches,
                           Variadic<AnyType>:$branch_operands);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top