Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for hash_table (0.17 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            }
            fessConfig = ComponentUtil.getFessConfig();
        }
    
        protected Hashtable<String, String> createEnvironment(final String initialContextFactory, final String securityAuthentication,
                final String providerUrl, final String principal, final String credntials) {
            final Hashtable<String, String> env = new Hashtable<>();
            putEnv(env, Context.INITIAL_CONTEXT_FACTORY, initialContextFactory);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

        }
    
        /**
         * {@link Hashtable}の新しいインスタンスを作成して返します。
         *
         * @param <K>
         *            {@link Hashtable}のキーの型
         * @param <V>
         *            {@link Hashtable}の値の型
         * @return {@link Hashtable}の新しいインスタンス
         * @see Hashtable#Hashtable()
         */
        public static <K, V> Hashtable<K, V> newHashtable() {
            return new Hashtable<>();
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    			hasTable := false
    			for _, t2 := range tables {
    				if t2 == t1 {
    					hasTable = true
    					break
    				}
    			}
    			if !hasTable {
    				t.Fatalf("Failed to get table %v when GetTables", t1)
    			}
    		}
    	}
    
    	for _, m := range allModels {
    		if !DB.Migrator().HasTable(m) {
    			t.Fatalf("Failed to create table for %#v", m)
    		}
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        Log-Output "Defender Preferences"
        Get-MpPreference
      }
    }
    
    # Converts the kube-env string in Yaml
    #
    # Returns: a PowerShell Hashtable object containing the key-value pairs from
    #   kube-env.
    function ConvertFrom_Yaml_KubeEnv {
      param (
        [parameter(Mandatory=$true)] [string]$kube_env_str
      )
      $kube_env_table = @{}
      $currentLine = $null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

       * value, you should always choose it explicitly.
       *
       * <p>The current implementation uses the concurrency level to create a fixed number of hashtable
       * segments, each governed by its own write lock. The segment lock is taken once for each explicit
       * write, and twice for each cache loading computation (once prior to loading the new value, and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		return 0
    	}
    	d.linkctxt.Errorf(symIdx, "internal error: no entry for sym %d in rtmap\n", symIdx)
    	return 0
    }
    
    // Find child by AT_name using hashtable if available or linear scan
    // if not.
    func findchild(die *dwarf.DWDie, name string) *dwarf.DWDie {
    	var prev *dwarf.DWDie
    	for ; die != prev; prev, die = die, walktypedef(die) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/runtime/map.go

    // high-order bits of each hash to distinguish the entries
    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    // When the hashtable grows, we allocate a new array
    // of buckets twice as big. Buckets are incrementally
    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top