Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for conditionMap (3.29 sec)

  1. pkg/printers/internalversion/printers.go

    	}
    
    	conditionMap := make(map[api.NodeConditionType]*api.NodeCondition)
    	NodeAllConditions := []api.NodeConditionType{api.NodeReady}
    	for i := range obj.Status.Conditions {
    		cond := obj.Status.Conditions[i]
    		conditionMap[cond.Type] = &cond
    	}
    	var status []string
    	for _, validCondition := range NodeAllConditions {
    		if condition, ok := conditionMap[validCondition]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response1.body.string()).isEqualTo("A")
        assertThat(response1.header("Allow")).isNull()
        assertThat((response1.receivedResponseAtMillis - t0).toDouble()).isCloseTo(0.0, 250.0)
    
        // A conditional cache hit updates the cache.
        Thread.sleep(500) // Make sure t0 and t1 are distinct.
        val t1 = System.currentTimeMillis()
        val response2 = get(server.url("/a"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    ((EQ|NE|LT|LE|GT|GE) (CMPWconst [0] x:(ANDconst [c] y)) yes no) && x.Uses == 1 => ((EQ|NE|LT|LE|GT|GE) (TSTWconst [int32(c)] y) yes no)
    
    // For conditional instructions such as CSET, CSEL.
    ((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) (CMPconst [0]  z:(AND        x y))) && z.Uses == 1 =>
    	((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) (TST x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    			p.Pc = pc
    			o = c.oplook(p)
    
    			// very large conditional branches
    			if (o.type_ == 16 || o.type_ == 17) && p.To.Target() != nil {
    				otxt = p.To.Target().Pc - pc
    				if otxt < -(1<<15)+10 || otxt >= (1<<15)-10 {
    					// Assemble the instruction with a target not too far to figure out BI and BO fields.
    					// If only the CTR or BI (the CR bit) are tested, the conditional branch can be inverted,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    // this is not always the case, JAX may trace the program differently based on
    // the shape polymorphism specification, for example, if the program contains
    // a conditional on "x.shape[0] % 2 == 0" that conditional would evaluate to
    // True with x specified as (2*b, ...) and False otherwise. We can revisit
    // this when need arises. See b/295316438 for details.
    class RemoveCustomCallWithShapeAssertion
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	{AVUSHLL, C_VCON, C_ARNG, C_NONE, C_ARNG, C_NONE, 102, 4, 0, 0, 0},
    	{AVUXTL, C_ARNG, C_NONE, C_NONE, C_ARNG, C_NONE, 102, 4, 0, 0, 0},
    	{AVUADDW, C_ARNG, C_ARNG, C_NONE, C_ARNG, C_NONE, 105, 4, 0, 0, 0},
    
    	/* conditional operations */
    	{ACSEL, C_COND, C_ZREG, C_ZREG, C_ZREG, C_NONE, 18, 4, 0, 0, 0},
    	{ACINC, C_COND, C_ZREG, C_NONE, C_ZREG, C_NONE, 18, 4, 0, 0, 0},
    	{ACSET, C_COND, C_NONE, C_NONE, C_ZREG, C_NONE, 18, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"foo": "baz",
    			},
    			schema: withRule(objectType(map[string]schema.Structural{
    				"foo": stringType,
    			}), `!oldSelf.hasValue() || self.foo == "bar"`),
    		},
    		{
    			name: "object - conditional field",
    			obj: map[string]interface{}{
    				"foo": "bar",
    			},
    			oldObj: map[string]interface{}{
    				"foo": "baz",
    			},
    			schema: withRule(objectType(map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		p.As == obj.ARET || p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    }
    
    // lookForJCC returns the first real instruction starting from p, if that instruction is a conditional
    // jump. Otherwise, nil is returned.
    func lookForJCC(p *obj.Prog) *obj.Prog {
    	// Skip any PCDATA, FUNCDATA or NOP instructions
    	var q *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
            </field>
            <field>
              <name>activation</name>
              <version>4.0.0+</version>
              <description>The conditional logic which will automatically trigger the inclusion of this
                profile.</description>
              <association>
                <type>Activation</type>
              </association>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    and yield a result of the same type as the operands.
    The right operand is evaluated conditionally.
    </p>
    
    <pre class="grammar">
    &amp;&amp;    conditional AND    p &amp;&amp; q  is  "if p then q else false"
    ||    conditional OR     p || q  is  "if p then true else q"
    !     NOT                !p      is  "not p"
    </pre>
    
    
    <h3 id="Address_operators">Address operators</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top