Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for SET (0.12 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * set. The order in which these subsets appear in the outer set is undefined. Note that the power
       * set of the empty set is not the empty set, but a one-element set containing the empty set.
       *
       * <p>The returned set and its constituent sets use {@code equals} to decide whether two elements
       * are identical, even if the input set uses a different concept of equivalence.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testPowerSetShowOff() {
        Set<Object> zero = ImmutableSet.of();
        Set<Set<Object>> one = powerSet(zero);
        Set<Set<Set<Object>>> two = powerSet(one);
        Set<Set<Set<Set<Object>>>> four = powerSet(two);
        Set<Set<Set<Set<Set<Object>>>>> sixteen = powerSet(four);
        Set<Set<Set<Set<Set<Set<Object>>>>>> sixtyFiveThousandish = powerSet(sixteen);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	credential := fmt.Sprintf("%s/%s", accessKeyID, scope)
    
    	// Set URL query.
    	query := req.URL.Query()
    	query.Set("X-Amz-Algorithm", signV4Algorithm)
    	query.Set("X-Amz-Date", date.Format(iso8601Format))
    	query.Set("X-Amz-Expires", strconv.FormatInt(expires, 10))
    	query.Set("X-Amz-SignedHeaders", "host")
    	query.Set("X-Amz-Credential", credential)
    	query.Set("X-Amz-Content-Sha256", unsignedPayload)
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.close()
        createNewCacheWithSize(10)
        set("a", "a", "a")
        set("b", "b", "b")
        set("c", "c", "c")
        set("d", "d", "d")
        set("e", "e", "e")
        cache["b"]!!.close() // 'B' is now least recently used.
    
        // Causing the size to grow to 12 should evict 'A'.
        set("f", "f", "f")
        // Causing the size to grow to 12 should evict 'C'.
        set("g", "g", "g")
        cache.flush()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

                allowed by the alias or set of aliases defined.
                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  6. configure.py

          clang_version = retrieve_clang_version(clang_cuda_compiler_path)
          disable_clang_offsetof_extension(clang_version)
        else:
          # Set up which gcc nvcc should use as the host compiler
          # No need to set this on Windows
          if not is_windows():
            set_gcc_host_compiler_path(environ_cp)
        set_other_cuda_vars(environ_cp)
      else:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  7. cmd/object-api-listobjects_test.go

    			},
    		},
    		// ListObjectsResult-23.
    		// Prefix is set to "Asia/India/" in the testCase, and delimiter is not set (testCase 55).
    		23: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "Asia/India/India-summer-photos-1"},
    				{Name: "Asia/India/Karnataka/Bangalore/Koramangala/pics"},
    			},
    		},
    
    		// ListObjectsResult-24.
    		// Prefix is set to "Asia" in the testCase, and delimiter is not set (testCase 56).
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 11:07:40 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  8. cmd/object-api-multipart_test.go

    		// `KeyMarker` is set. It contains part of the objectname as KeyPrefix.
    		// Testing for the case with `MaxUploads` set to 0.
    		// Expecting the result to contain no MultipartInfo entry since `MaxUploads` is set to 0.
    		// Expecting `isTruncated` to be true.
    		{
    			MaxUploads:  0,
    			KeyMarker:   "min",
    			IsTruncated: true,
    		},
    		// listMultipartResults - 9.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            final Set<String> arrayFieldSet = getIndexAdminArrayFieldSet();
            final Set<String> dateFieldSet = getIndexAdminDateFieldSet();
            final Set<String> integerFieldSet = getIndexAdminIntegerFieldSet();
            final Set<String> longFieldSet = getIndexAdminLongFieldSet();
            final Set<String> floatFieldSet = getIndexAdminFloatFieldSet();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private File file;
    
        private File basedir;
    
        private Path rootDirectory;
    
        private Set<Artifact> resolvedArtifacts;
    
        private ArtifactFilter artifactFilter;
    
        private Set<Artifact> artifacts;
    
        private Artifact parentArtifact;
    
        private Set<Artifact> pluginArtifacts;
    
        private List<ArtifactRepository> remoteArtifactRepositories;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top