Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,647 for conditional (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    	(LoweredAtomicOr32 (ANDI <typ.Uintptr> [^3] ptr)
    		(SLL <typ.UInt32> (ZeroExt8to32 val)
    			(SLLI <typ.UInt64> [3] (ANDI <typ.UInt64> [3] ptr))) mem)
    
    (AtomicOr32  ...) => (LoweredAtomicOr32  ...)
    
    // Conditional branches
    (If cond yes no) => (BNEZ (MOVBUreg <typ.UInt64> cond) yes no)
    
    // Optimizations
    
    // Absorb SEQZ/SNEZ into branch.
    (BEQZ (SEQZ x) yes no) => (BNEZ x yes no)
    (BEQZ (SNEZ x) yes no) => (BEQZ x yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    	off := *(*uint32)(unsafe.Pointer(p))
    	// Return off == ^uint32(0) ? 0 : f.datap.gofunc + uintptr(off), but without branches.
    	// The compiler calculates mask on most architectures using conditional assignment.
    	var mask uintptr
    	if off == ^uint32(0) {
    		mask = 1
    	}
    	mask--
    	raw := base + uintptr(off)
    	return unsafe.Pointer(raw & mask)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    		cond := conditions[k]
    		setter := kstatus.UpdateConditionIfChanged
    		if cond.setOnce != "" {
    			setter = func(conditions []metav1.Condition, condition metav1.Condition) []metav1.Condition {
    				return kstatus.CreateCondition(conditions, condition, cond.setOnce)
    			}
    		}
    		// A condition can be "negative polarity" (ex: ListenerInvalid) or "positive polarity" (ex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/obj6.go

    		//
    		// The NOP is needed to give the jumps somewhere to land.
    		// It is a liblink NOP, not an x86 NOP: it encodes to 0 instruction bytes.
    		//
    		// The layout is chosen to help static branch prediction:
    		// Both conditional jumps are unlikely, so they are arranged to be forward jumps.
    
    		// MOVQ g_panic(g), regEntryTmp0
    		p = obj.Appendp(p, newprog)
    		p.As = AMOVQ
    		p.From.Type = obj.TYPE_MEM
    		p.From.Reg = regg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    	LDt (s2)
    	CALL p256SubInternal(SB)
    	ST (yout)
    	// Load stored values from stack
    	MOVQ rptr, AX
    	MOVL sel_save, BX
    	MOVL zero_save, CX
    	// The result is not valid if (sel == 0), conditional choose
    	MOVOU xout(16*0), X0
    	MOVOU xout(16*1), X1
    	MOVOU yout(16*0), X2
    	MOVOU yout(16*1), X3
    	MOVOU zout(16*0), X4
    	MOVOU zout(16*1), X5
    
    	MOVL BX, X6
    	MOVL CX, X7
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

        }
    
        public void addCondition(final String key, final String regex) {
            final String value = conditionMap.get(key);
            if (StringUtil.isBlank(value)) {
                conditionMap.put(key, regex);
            } else {
                conditionMap.put(key, value + "|" + regex);
            }
        }
    
        @Override
        public boolean isTarget(final Map<String, Object> docMap) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     *
     * <p>This can be used to create production libraries, applications, test suites, test fixtures,
     * or any other consumable JVM feature.</p>
     *
     * <p>This feature can conditionally be configured to instead "extend" the production code. In that case, this
     * feature creates additional dependency configurations which live adjacent to the main source set's dependency scopes,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. pkg/test/framework/testcontext.go

    	c.CleanupStrategy(cleanup.Conditionally, fn)
    }
    
    func (c *testContext) Cleanup(fn func()) {
    	c.CleanupStrategy(cleanup.Always, fn)
    }
    
    func (c *testContext) CleanupStrategy(strategy cleanup.Strategy, fn func()) {
    	switch strategy {
    	case cleanup.Always:
    		c.scope.addCloser(&closer{fn: func() error {
    			fn()
    			return nil
    		}})
    	case cleanup.Conditionally:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top