Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 282 for conditional (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
    // is not satisfied.
    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    	var otxt int64
    	var q *obj.Prog
    	for bflag != 0 {
    		bflag = 0
    		pc = 0
    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			// very large conditional branches
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt = p.To.Target().Pc - pc
    				if otxt < -(1<<17)+10 || otxt >= (1<<17)-10 {
    					q = c.newprog()
    					q.Link = p.Link
    					p.Link = q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    For example:
    
    ```python
    # 'condition' tensor is [[True,  False]
    #                        [False, True]]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e)  # => [[1, 6], [7, 4]]
    
    
    # 'condition' tensor is [True, False]
    # 't' is [[1, 2],
    #         [3, 4]]
    # 'e' is [[5, 6],
    #         [7, 8]]
    select(condition, t, e) ==> [[1, 2],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	VMOV	V9.H[0], V12.H[1]     // 2c05066e
    	VMOV	V8.B[0], V12.B[1]     // 0c05036e
    	VMOV	V8.B[7], V4.B[8]      // 043d116e
    
    // CBZ
    again:
    	CBZ	R1, again // CBZ R1
    
    // conditional operations
    	CSET	GT, R1	        // e1d79f9a
    	CSETW	HI, R2	        // e2979f1a
    	CSEL	LT, R1, R2, ZR	// 3fb0829a
    	CSELW	LT, R2, R3, R4	// 44b0831a
    	CSINC	GT, R1, ZR, R3	// 23c49f9a
    	CSNEG	MI, R1, R2, R3	// 234482da
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	recursionChainBottom(x, pcs)
    }
    
    func recursionChainBottom(x int, pcs []uintptr) {
    	// This will be called each time, we only care about the last. We
    	// can't make this conditional or this function won't be inlined.
    	dumpCallers(pcs)
    
    	recursionChainTop(x-1, pcs)
    }
    
    func parseProfile(t *testing.T, valBytes []byte, f func(uintptr, []*profile.Location, map[string][]string)) *profile.Profile {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	// Note: leave v.Block intact.  The Block field is used after clobberIfDead.
    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CLIJ {s390x.LessOrGreater} (LOCGR {d} (MOVDconst [0]) (MOVDconst [x]) cmp) [0] yes no)
      && int32(x) != 0
      => (BRC {d} cmp yes no)
    
    // Canonicalize BRC condition code mask by removing impossible conditions.
    // Integer comparisons cannot generate the unordered condition.
    (BRC {c} x:((CMP|CMPW|CMPU|CMPWU)    _ _) yes no) && c&s390x.Unordered != 0 => (BRC {c&^s390x.Unordered} x yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For the use case where custom settings or build files are used to model different behavior (similar to Maven profiles), consider using <<build_environment#sec:gradle_system_properties, system properties>> with conditional logic.
    For example, given a piece of code in either settings or build file:
    ```
    if (System.getProperty("profile") == "custom") {
        println("custom profile")
    } else {
        println("default profile")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (LessEqual (InvertFlags x)) => (GreaterEqual x)
    (LessEqualU (InvertFlags x)) => (GreaterEqualU x)
    (GreaterEqual (InvertFlags x)) => (LessEqual x)
    (GreaterEqualU (InvertFlags x)) => (LessEqualU x)
    
    // absorb flag constants into conditional instructions
    (CMOVWLSconst _ (FlagConstant [fc]) [c]) && fc.ule() => (MOVWconst [c])
    (CMOVWLSconst x (FlagConstant [fc]) [c]) && fc.ugt() => x
    
    (CMOVWHSconst _ (FlagConstant [fc]) [c]) && fc.uge() => (MOVWconst [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// +optional
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=type
    	Conditions []ReplicaSetCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,6,rep,name=conditions"`
    }
    
    type ReplicaSetConditionType string
    
    // These are valid conditions of a replica set.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top