Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Booleans (0.22 sec)

  1. cmd/bucket-replication.go

    	return mustReplicateOptions{
    		meta:               meta,
    		status:             status,
    		opType:             op,
    		replicationRequest: opts.ReplicationRequest,
    	}
    }
    
    // mustReplicate returns 2 booleans - true if object meets replication criteria and true if replication is to be done in
    // a synchronous manner.
    func mustReplicate(ctx context.Context, bucket, object string, mopts mustReplicateOptions) (dsc ReplicateDecision) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Select1 (Sub64borrow x y bo)) => (NEG <typ.UInt64> (NGCzerocarry <typ.UInt64> (Select1 <types.TypeFlags> (SBCSflags x y (Select1 <types.TypeFlags> (NEGSflags bo))))))
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB  ...) => (OR ...)
    (EqB  x y) => (XOR (MOVDconst [1]) (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not    x) => (XOR (MOVDconst [1]) x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1 == self.val2",
    				"self.val1 == b'AB'",
    				"self.val1 == bytes('AB')",
    				"self.val1 == b'\\x41\\x42'",
    				"type(self.val1) == bytes",
    				"size(self.val1) == 2",
    			},
    		},
    		{name: "booleans",
    			obj:    objs(true, true, false, false),
    			schema: schemas(booleanType, booleanType, booleanType, booleanType),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "true"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	*(*V)(unsafe.Add(unsafe.Pointer(&in), offset)) = value
    	return in
    }
    
    func TestIsZero(t *testing.T) {
    	for i, tt := range []struct {
    		x    any
    		want bool
    	}{
    		// Booleans
    		{true, false},
    		{false, true},
    		// Numeric types
    		{int(0), true},
    		{int(1), false},
    		{int8(0), true},
    		{int8(1), false},
    		{int16(0), true},
    		{int16(1), false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private ClassBuilderImpl(
                AsmClassGenerator classGenerator,
                boolean decorated,
                int factoryId,
                boolean extensible,
                boolean conventionAware,
                boolean managed,
                boolean providesOwnDynamicObject,
                boolean requiresToString,
                boolean requiresServicesMethod,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

       * example, the code:
       *
       * <pre>{@code
       * Map<String, Boolean> options =
       *     ImmutableMap.of("verbose", true, "sort", false);
       * EntryTransformer<String, Boolean, String> flagPrefixer =
       *     new EntryTransformer<String, Boolean, String>() {
       *       public String transformEntry(String key, Boolean value) {
       *         return value ? key : "no" + key;
       *       }
       *     };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

      }
    
      boolean refreshes() {
        return refreshNanos > 0;
      }
    
      boolean usesAccessQueue() {
        return expiresAfterAccess() || evictsBySize();
      }
    
      boolean usesWriteQueue() {
        return expiresAfterWrite();
      }
    
      boolean recordsWrite() {
        return expiresAfterWrite() || refreshes();
      }
    
      boolean recordsAccess() {
        return expiresAfterAccess();
      }
    
      boolean recordsTime() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

      }
    
      boolean refreshes() {
        return refreshNanos > 0;
      }
    
      boolean usesAccessQueue() {
        return expiresAfterAccess() || evictsBySize();
      }
    
      boolean usesWriteQueue() {
        return expiresAfterWrite();
      }
    
      boolean recordsWrite() {
        return expiresAfterWrite() || refreshes();
      }
    
      boolean recordsAccess() {
        return expiresAfterAccess();
      }
    
      boolean recordsTime() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        void smartAssertTrue(
            ImmutableSet<ListenableFuture<String>> inputs, Exception cause, boolean expression) {
          if (!expression) {
            throw new AssertionError(smartToString(inputs), cause);
          }
        }
    
        boolean hasDelayed(ListenableFuture<String> a, ListenableFuture<String> b) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        void smartAssertTrue(
            ImmutableSet<ListenableFuture<String>> inputs, Exception cause, boolean expression) {
          if (!expression) {
            throw new AssertionError(smartToString(inputs), cause);
          }
        }
    
        boolean hasDelayed(ListenableFuture<String> a, ListenableFuture<String> b) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top