Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for unse (0.07 sec)

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

    @ElementTypesAreNonnullByDefault
    final class CompactHashing {
      private CompactHashing() {}
    
      /** Indicates blank table entries. */
      static final byte UNSET = 0;
    
      /** Number of bits used to store the numbers of hash table bits (max 30). */
      private static final int HASH_TABLE_BITS_MAX_BITS = 5;
    
      /** Use high bits of metadata for modification count. */
      static final int MODIFICATION_COUNT_INCREMENT = (1 << HASH_TABLE_BITS_MAX_BITS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashing.java

    @ElementTypesAreNonnullByDefault
    final class CompactHashing {
      private CompactHashing() {}
    
      /** Indicates blank table entries. */
      static final byte UNSET = 0;
    
      /** Number of bits used to store the numbers of hash table bits (max 30). */
      private static final int HASH_TABLE_BITS_MAX_BITS = 5;
    
      /** Use high bits of metadata for modification count. */
      static final int MODIFICATION_COUNT_INCREMENT = (1 << HASH_TABLE_BITS_MAX_BITS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. test-site/activator.bat

        echo.
        echo Environment variables ^(read from context^):
        echo JAVA_OPTS          Environment variable, if unset uses ""
        echo SBT_OPTS           Environment variable, if unset uses ""
        echo ACTIVATOR_OPTS     Environment variable, if unset uses ""
        echo.
        echo Please note that in order for Activator to work you must have Java available on the classpath
        echo.
        goto :end
      )
    )
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue19418/plugin.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 196 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    	}
    	w.Flush()
    	return buf.String()
    }
    
    // IgnoreUnset is an option that ignores fields that are unset on the right
    // hand side of a comparison. This is useful in testing to assert that an
    // object is a derivative.
    func IgnoreUnset() cmp.Option {
    	return cmp.Options{
    		// ignore unset fields in v2
    		cmp.FilterPath(func(path cmp.Path) bool {
    			_, v2 := path.Last().Values()
    			switch v2.Kind() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                            settings.develocity {
                                buildScan.obfuscation.hostname {
                                    // lambda expression
                                    "unset"
                                }
                            }
                        }
                    }
                """
                file('build.gradle.kts') << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/ReferenceEntry.java

     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    interface ReferenceEntry<K, V> {
      /** Returns the value reference from this entry. */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_replace_conflict.txt

    stderr 'go: conflicting replacements for example.com/dep@v1.0.0:\n\t'$PWD${/}'dep1\n\t'$PWD${/}'dep2\nuse "go work edit -replace example.com/dep@v1.0.0=\[override\]" to resolve'
    go work edit -replace example.com/dep@v1.0.0=./dep1
    go list -m example.com/dep
    stdout 'example.com/dep v1.0.0 => ./dep1'
    
    -- foo --
    -- go.work --
    use m
    use n
    -- m/go.mod --
    module example.com/m
    
    require example.com/dep v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 15 22:28:43 UTC 2022
    - 1009 bytes
    - Viewed (0)
  9. releasenotes/notes/mesh-expansion.yaml

        1. If `values.gateways.istio-ingressgateway.meshExpansionPorts` is set, move all ports to `components.ingressGateways[name=istio-ingressgateway].k8s.service.ports` if they're not already present. Then, unset this value.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/options_test.go

    		if err := os.Unsetenv(env); err != nil {
    			t.Errorf("couldn't unset env %s: %v", env, err)
    		}
    	}
    }
    
    func TestFallbackToEnv(t *testing.T) {
    	testCases := []struct {
    		desc          string
    		env           string
    		value         string
    		valueSet      bool
    		expectedValue string
    		expectedError bool
    	}{
    		{
    			desc:          "value unset",
    			env:           "FOO",
    			valueSet:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:55:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top