Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,120 for Booleans (0.18 sec)

  1. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

        platform.assumeNotOpenJSSE()
        platform.assumeNotBouncyCastle()
        listener.forbidLock(get(client.connectionPool))
        listener.forbidLock(client.dispatcher)
      }
    
      @ParameterizedTest
      @ValueSource(booleans = [true, false])
      fun successfulCallEventSequence() {
        server!!.enqueue(MockResponse(body = "abc"))
        val call =
          client.newCall(
            Request.Builder()
              .url(server!!.url("/"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

                    throw new InvalidUserDataException(fm.toString());
                }
            }
    
            private static boolean isValidType(Attribute<?> attribute) {
                Class<?> type = attribute.getType();
                return type == String.class || type == Boolean.class || type == Boolean.TYPE;
            }
    
            ComponentMetadata build() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProviderTest.groovy

      - Attribute 'integer' has type class java.lang.Integer
      - Attribute 'long' has type class java.lang.Long""")
        }
    
        static class TestSupplier implements ComponentMetadataSupplier {
            final static Attribute<String> STRING_ATTRIBUTE = Attribute.of("test", String)
            final static Attribute<Boolean> BOOLEAN_ATTRIBUTE = Attribute.of("bool", Boolean)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

          "ConnectStart",
          "ConnectEnd",
          "ConnectionAcquired",
          "ConnectionReleased",
        )
      }
    
      @ParameterizedTest
      @ValueSource(booleans = [false, true])
      fun proxyMoveTest(cleanShutdown: Boolean) {
        // Define a single Proxy at myproxy:8008 that will artificially move during the test
        val proxySelector = RecordingProxySelector()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/nosql-databases-couchbase.md

    You can adapt it to any other NoSQL database like:
    
    * **MongoDB**
    * **Cassandra**
    * **CouchDB**
    * **ArangoDB**
    * **ElasticSearch**, etc.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/DoubleMath.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.primitives.Booleans;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.math.RoundingMode;
    import java.util.Iterator;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/DoubleMath.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.primitives.Booleans;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.math.RoundingMode;
    import java.util.Iterator;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/database/sql/driver/types.go

    	// Value returns a driver Value.
    	// Value must not panic.
    	Value() (Value, error)
    }
    
    // Bool is a [ValueConverter] that converts input values to bool.
    //
    // The conversion rules are:
    //   - booleans are returned unchanged
    //   - for integer types,
    //     1 is true
    //     0 is false,
    //     other integers are an error
    //   - for strings and []byte, same rules as [strconv.ParseBool]
    //   - all other types are an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  0,
    		},
    		{
    			name:             "map of booleans with all",
    			schemaGenerator:  genMapWithRule("boolean", "self.all(x, true)"),
    			expectedCalcCost: 943718,
    			setMaxElements:   100,
    			expectedSetCost:  302,
    		},
    		{
    			name:             "map of booleans with has",
    			schemaGenerator:  genMapWithRule("boolean", "has(self.x)"),
    			expectedCalcCost: 0,
    			setMaxElements:   1024,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/encoding/json/stream.go

    }
    
    var _ Marshaler = (*RawMessage)(nil)
    var _ Unmarshaler = (*RawMessage)(nil)
    
    // A Token holds a value of one of these types:
    //
    //   - [Delim], for the four JSON delimiters [ ] { }
    //   - bool, for JSON booleans
    //   - float64, for JSON numbers
    //   - [Number], for JSON numbers
    //   - string, for JSON string literals
    //   - nil, for JSON null
    type Token any
    
    const (
    	tokenTopValue = iota
    	tokenArrayStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top